12 lines
232 B
C#
12 lines
232 B
C#
|
|
using SIGCM2.Domain.Entities;
|
||
|
|
|
||
|
|
namespace SIGCM2.Application.Medios.Create;
|
||
|
|
|
||
|
|
public sealed record MedioCreatedDto(
|
||
|
|
int Id,
|
||
|
|
string Codigo,
|
||
|
|
string Nombre,
|
||
|
|
TipoMedio Tipo,
|
||
|
|
int? PlataformaEmpresaId,
|
||
|
|
bool Activo);
|