10 lines
190 B
C#
10 lines
190 B
C#
|
|
namespace SIGCM2.Application.Secciones.Create;
|
||
|
|
|
||
|
|
public sealed record SeccionCreatedDto(
|
||
|
|
int Id,
|
||
|
|
int MedioId,
|
||
|
|
string Codigo,
|
||
|
|
string Nombre,
|
||
|
|
string Tipo,
|
||
|
|
bool Activo);
|