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