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

14 lines
524 B
C#
Raw Normal View History

namespace GestionIntegral.Api.Dtos.Reportes
{
public class ControlDevolucionesReporteDto
{
public int Ingresados { get; set; }
public int Sobrantes { get; set; }
public string Publicacion { get; set; } = string.Empty;
public int Llevados { get; set; }
public int Devueltos { get; set; }
public string Tipo { get; set; } = string.Empty; // "Accionistas" o "Canillitas"
public int TotalNoAccionistas { get; set; }
public int SinCargo {get; set; }
}
}