Files
SIG-CM2.0/src/api/SIGCM2.Application/IngresosBrutos/Update/UpdateIngresosBrutosCommand.cs

11 lines
321 B
C#
Raw Normal View History

namespace SIGCM2.Application.IngresosBrutos.Update;
/// <summary>
/// Updates only cosmetic fields: Descripcion, Activo.
/// Alicuota and Provincia are NOT part of this command — they are immutable.
/// </summary>
public sealed record UpdateIngresosBrutosCommand(
int Id,
string Descripcion,
bool Activo);