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