19 lines
387 B
C#
19 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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>();
|
|
}
|
|
}
|