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