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