9 lines
323 B
C#
9 lines
323 B
C#
|
|
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!;
|
||
|
|
}
|