using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareCc.WCF.ThreeEntity { public class StockTransferRequestItem { /// /// /// public Profile Profile { get; set; } /// /// /// public string SendStorageLocation { get; set; } /// /// /// public string PickStorageLocation { get; set; } /// /// /// public string Classification { get; set; } /// /// /// public string Grade { get; set; } /// /// /// public string ArticleType { get; set; } /// /// /// public string ArticleNumber { get; set; } /// /// /// public string Quantity { get; set; } /// /// /// public string MaterialNo { get; set; } /// /// /// public string SequenceNo { get; set; } /// /// /// public string StockTransferRequestItemNo { get; set; } /// /// /// public string StockTransferRequestNo { get; set; } } }