8 lines
209 B
C#
8 lines
209 B
C#
namespace GestionIntegral.Api.Dtos.Distribucion
|
|
{
|
|
public class DistribuidorLookupDto
|
|
{
|
|
public int IdDistribuidor { get; set; }
|
|
public string Nombre { get; set; } = string.Empty;
|
|
}
|
|
} |