13 lines
270 B
C#
13 lines
270 B
C#
namespace EgwCoreLib.Lux.Core.RestPayload
|
|
{
|
|
public class BomDTO
|
|
{
|
|
|
|
//public string UID { get; set; } = "";
|
|
|
|
//public string Customer { get; set; } = "";
|
|
|
|
public List<BomItemDTO> ItemList { get; set; } = new List<BomItemDTO>();
|
|
}
|
|
}
|