9 lines
234 B
C#
9 lines
234 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Empresas
|
||
|
|
{
|
||
|
|
public class EmpresaDto
|
||
|
|
{
|
||
|
|
public int IdEmpresa { get; set; }
|
||
|
|
public string Nombre { get; set; } = string.Empty;
|
||
|
|
public string? Detalle { get; set; }
|
||
|
|
}
|
||
|
|
}
|