15 lines
365 B
C#
15 lines
365 B
C#
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
public class ToolMoldInput
|
|
{
|
|
public string mold { get; set; }
|
|
public string[] equipid { get; set; }
|
|
public string materialid { get; set; }
|
|
public int real_cavity_qty { get; set; }
|
|
public string[] materialids { get; set; }
|
|
|
|
public string[] molds { get; set; }
|
|
}
|
|
|
|
}
|