11 lines
213 B
C#
11 lines
213 B
C#
|
|
namespace SIGCM2.Application.Usuarios.Create;
|
||
|
|
|
||
|
|
public sealed record UsuarioCreatedDto(
|
||
|
|
int Id,
|
||
|
|
string Username,
|
||
|
|
string Nombre,
|
||
|
|
string Apellido,
|
||
|
|
string? Email,
|
||
|
|
string Rol,
|
||
|
|
bool Activo);
|