11 lines
388 B
C#
11 lines
388 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|