11 lines
304 B
C#
11 lines
304 B
C#
|
|
// Backend/GestionIntegral.Api/Models/Dtos/Impresion/BobinaLoteDetalleDto.cs
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Impresion
|
||
|
|
{
|
||
|
|
public class BobinaLoteDetalleDto
|
||
|
|
{
|
||
|
|
public int IdTipoBobina { get; set; }
|
||
|
|
public string NroBobina { get; set; } = string.Empty;
|
||
|
|
public int Peso { get; set; }
|
||
|
|
}
|
||
|
|
}
|