using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NX.ERP.BLL.Model { public class OutBoundDetail { public string MaterialCode { get; set; } public double Qty { get; set; } public string BinCode { get; set; } public int SourceDtlId { get; set; } // material_code //qty //source_dtl_id //bin_code } }