Files
mapo-mono/MP.MONO.Core/DTO/ProductionDTO.cs
T
2022-02-14 15:54:52 +01:00

24 lines
640 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.MONO.Core.DTO
{
public class ProductionDTO
{
public string Order { get; set; } = "";
public string ItemCode { get; set; } = "";
public string ProgName { get; set; } = "";
public int OrderQty { get; set; } = 0;
public int CurrQty{ get; set; } = 0;
public double CycleTime { get; set; } = 0;
public string Message { get; set; } = "";
}
}