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

11 lines
291 B
C#
Raw Normal View History

using System;
namespace GestionIntegral.Api.Dtos.Reportes
{
public class NovedadesCanillasReporteDto
{
public string NomApe { get; set; } = string.Empty; // Nombre del Canillita
public DateTime Fecha { get; set; }
public string? Detalle { get; set; }
}
}