17 lines
646 B
C#
17 lines
646 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Reportes
|
||
|
|
{
|
||
|
|
public class MovimientoBobinasDto
|
||
|
|
{
|
||
|
|
public string TipoBobina { get; set; } = string.Empty;
|
||
|
|
public int BobinasIniciales { get; set; }
|
||
|
|
public int KilosIniciales { get; set; }
|
||
|
|
public int BobinasCompradas { get; set; }
|
||
|
|
public int KilosComprados { get; set; }
|
||
|
|
public int BobinasConsumidas { get; set; }
|
||
|
|
public int KilosConsumidos { get; set; }
|
||
|
|
public int BobinasDaniadas { get; set; }
|
||
|
|
public int KilosDaniados { get; set; }
|
||
|
|
public int BobinasFinales { get; set; }
|
||
|
|
public int KilosFinales { get; set; }
|
||
|
|
}
|
||
|
|
}
|