10 lines
192 B
C#
10 lines
192 B
C#
|
|
namespace SIGCM2.Application.Rubros.Create;
|
||
|
|
|
||
|
|
public sealed record RubroCreatedDto(
|
||
|
|
int Id,
|
||
|
|
string Nombre,
|
||
|
|
int? ParentId,
|
||
|
|
int Orden,
|
||
|
|
bool Activo,
|
||
|
|
int? TarifarioBaseId);
|