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

11 lines
388 B
C#
Raw Normal View History

namespace GestionIntegral.Api.Dtos.Reportes
{
public class CanillaGananciaReporteDto // Nuevo nombre para el DTO
{
public string Canilla { get; set; } = string.Empty; // NomApe del canillita
public int? Legajo { get; set; }
public int? Francos { get; set; }
public int? Faltas { get; set; }
public decimal? TotalRendir { get; set; }
}
}