12 lines
253 B
C#
12 lines
253 B
C#
|
|
namespace SIGCM2.Application.Rubros.GetById;
|
||
|
|
|
||
|
|
public sealed record RubroDetailDto(
|
||
|
|
int Id,
|
||
|
|
string Nombre,
|
||
|
|
int? ParentId,
|
||
|
|
int Orden,
|
||
|
|
bool Activo,
|
||
|
|
int? TarifarioBaseId,
|
||
|
|
DateTime FechaCreacion,
|
||
|
|
DateTime? FechaModificacion);
|