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!; }