19 lines
381 B
C#
19 lines
381 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<BomRowDTO> ItemList { get; set; } = new List<BomRowDTO>();
|
|
}
|
|
}
|