Files
WatchIt/WatchIt.DTO/Models/Controllers/Accounts/Account/AccountRequest.cs

9 lines
323 B
C#
Raw Normal View History

namespace WatchIt.DTO.Models.Controllers.Accounts.Account;
public class AccountRequest : IPasswordEditRequest
{
public string Username { get; set; } = null!;
public string Email { get; set; } = null!;
public string Password { get; set; } = null!;
public string PasswordConfirmation { get; set; } = null!;
}