Files

11 lines
251 B
C#
Raw Permalink Normal View History

namespace WatchIt.DTO.Models.Controllers.Accounts.AccountUsername;
public class AccountUsernameRequest
{
#region PROPERTIES
public string Username { get; set; } = null!;
public string Password { get; set; } = null!;
#endregion
}