Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Distribucion/NovedadCanillaDto.cs

13 lines
376 B
C#
Raw Normal View History

using System;
namespace GestionIntegral.Api.Dtos.Distribucion
{
public class NovedadCanillaDto
{
public int IdNovedad { get; set; }
public int IdCanilla { get; set; }
public string NombreCanilla { get; set; } = string.Empty; // Para mostrar en UI
public DateTime Fecha { get; set; }
public string? Detalle { get; set; }
}
}