Files
lux/EgwCoreLib.Lux.Core/RestPayload/BomDTO.cs
T
2025-07-22 19:07:33 +02:00

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