namespace Entidades.Dto; public class CrearClienteDto { public long dni { get; set; } public string nombre { get; set; } = null!; public string apellido { get; set; } = null!; public string domicilio { get; set; } = null!; public string celular { get; set; } = null!; public string email { get; set; } = null!; public string contraseƱa { get; set; } = null!; }