Files
lux/EgwCoreLib.Lux.Core/RestPayload/BomDTO.cs
T
2025-08-07 17:23:31 +02:00

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>();
}
}