8 lines
164 B
C#
8 lines
164 B
C#
|
|
namespace SIGCM2.Application.Secciones.Create;
|
||
|
|
|
||
|
|
public sealed record CreateSeccionCommand(
|
||
|
|
int MedioId,
|
||
|
|
string Codigo,
|
||
|
|
string Nombre,
|
||
|
|
string Tipo);
|