21 lines
602 B
C#
21 lines
602 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwCoreLib.Lux.Core.RestPayload
|
|
{
|
|
public class BomItemDTO
|
|
{
|
|
public string ClassCode { get; set; } = "";
|
|
public string DescriptionCode { get; set; } = "";
|
|
public string ItemCode { get; set; } = "";
|
|
public double Qty { get; set; } = 0;
|
|
public double Price { get; set; } = 0;
|
|
public int ItemID { get; set; } = 0;
|
|
public int ItemQty { get; set; } = 0;
|
|
}
|
|
}
|