9 lines
236 B
C#
9 lines
236 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Usuarios
|
||
|
|
{
|
||
|
|
public class PerfilDto
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public string NombrePerfil { get; set; } = string.Empty;
|
||
|
|
public string? Descripcion { get; set; }
|
||
|
|
}
|
||
|
|
}
|