sanAntonioSeniorGolf/API/DTO/Login/UserLoginDTO.cs

13 lines
216 B
C#
Raw Normal View History

2024-07-09 18:03:42 -05:00
using System.ComponentModel.DataAnnotations;
namespace API.DTO.Login
{
public class UserLoginDTO
{
public ulong phoneNumber { get; set; }
[MaxLength(100)]
public string password { get; set; } = null!;
}
}