Files
mapo-core/MP.Core/DTO/ParetoFluxLogDTO.cs
T

9 lines
235 B
C#

namespace MP.Core.DTO
{
public class ParetoFluxLogDTO
{
public string IdxMacchina { get; set; } = string.Empty;
public string CodFlux { get; set; } = string.Empty;
public int Qty { get; set; }
}
}