Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Reportes/LiquidacionCanillaGananciaDto.cs

5 lines
196 B
C#
Raw Normal View History

public class LiquidacionCanillaGananciaDto
{
public string Publicacion { get; set; } = string.Empty;
public decimal TotalRendir { get; set; } // Asumo que este es el 'monto de comisión'
}