23 lines
1014 B
C#
23 lines
1014 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Impresion
|
||
|
|
{
|
||
|
|
public class StockBobinaDto
|
||
|
|
{
|
||
|
|
public int IdBobina { get; set; }
|
||
|
|
public int IdTipoBobina { get; set; }
|
||
|
|
public string NombreTipoBobina { get; set; } = string.Empty;
|
||
|
|
public string NroBobina { get; set; } = string.Empty;
|
||
|
|
public int Peso { get; set; }
|
||
|
|
public int IdPlanta { get; set; }
|
||
|
|
public string NombrePlanta { get; set; } = string.Empty;
|
||
|
|
public int IdEstadoBobina { get; set; }
|
||
|
|
public string NombreEstadoBobina { get; set; } = string.Empty;
|
||
|
|
public string Remito { get; set; } = string.Empty;
|
||
|
|
public string FechaRemito { get; set; } = string.Empty; // yyyy-MM-dd
|
||
|
|
public string? FechaEstado { get; set; } // yyyy-MM-dd
|
||
|
|
public int? IdPublicacion { get; set; }
|
||
|
|
public string? NombrePublicacion { get; set; }
|
||
|
|
public int? IdSeccion { get; set; }
|
||
|
|
public string? NombreSeccion { get; set; }
|
||
|
|
public string? Obs { get; set; }
|
||
|
|
}
|
||
|
|
}
|