using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.EquipMgr.Entities.Dto { public class ToolMoldInput { public string mold { get; set; } public string[] equipid { get; set; } public string productid { get; set; } public int real_cavity_qty { get; set; } public string[] productids { get; set; } public string[] molds { get; set; } } }