namespace GestionIntegral.Api.Dtos.Distribucion { public class OtroDestinoDto { public int IdDestino { get; set; } public string Nombre { get; set; } = string.Empty; public string? Obs { get; set; } } }