using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NX.ERP.Model.MOM { public class MomDetail: BaseModel { private int id; private double qty; private int modid; public ICollection ProductAllocateOrderLst { get; set; } = new List(); public int ProductOrderDtlId { get => id; set => id = value; } public int ProductOrderId { get => modid; set => modid = value; } public string ProductOrderNo { get; set; } public DateTime ProductOrderDate { get; set; } public string ProductCode { get; set; } //public string BatchNo { get; set; } public double Qty { get => qty; set => qty = value; } } }