13 lines
216 B
C#
13 lines
216 B
C#
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace API.DTO.Login
|
||
|
{
|
||
|
public class UserLoginDTO
|
||
|
{
|
||
|
public ulong phoneNumber { get; set; }
|
||
|
|
||
|
[MaxLength(100)]
|
||
|
public string password { get; set; } = null!;
|
||
|
}
|
||
|
}
|