sanAntonioSeniorGolf/API/DTO/Login/UserLoginDTO.cs

14 lines
249 B
C#
Raw Normal View History

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