11 lines
321 B
C#
11 lines
321 B
C#
|
|
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);
|