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