9 lines
235 B
C#
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; }
|
|
}
|
|
} |