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