mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
13 lines
297 B
C#
13 lines
297 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.Authentication;
|
|
|
|
public class ForgotPasswordDto
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
public required string Email { get; set; }
|
|
|
|
[Required]
|
|
public required string ResetPasswordUri { get; set; }
|
|
} |