11 lines
277 B
C#
11 lines
277 B
C#
|
|
using SIGCM2.Domain.Fiscal;
|
||
|
|
|
||
|
|
namespace SIGCM2.Application.IngresosBrutos.Create;
|
||
|
|
|
||
|
|
public sealed record CreateIngresosBrutosCommand(
|
||
|
|
ProvinciaArgentina Provincia,
|
||
|
|
string Descripcion,
|
||
|
|
decimal Alicuota,
|
||
|
|
DateOnly VigenciaDesde,
|
||
|
|
DateOnly? VigenciaHasta = null);
|