using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NX.ERP.Model.Store { public class MaterialStoreOut { private int id; private string code; private string whcode; private string proorderid; private DateTime date; private string sourceCode; private string source; private IList details; public int Id { get => id; set => id = value; } public string Code { get => code; set => code = value; } public string Whcode { get => whcode; set => whcode = value; } public string Proorderid { get => proorderid; set => proorderid = value; } public string SourceCode { get => sourceCode; set => sourceCode = value; } public string Source { get => source; set => source = value; } public DateTime Date { get => date; set => date = value; } public IList Details { get => details; set => details = value; } } }