using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareCc.WCF.ThreeEntity { public class PickListItem { /// /// /// public Profile Profile { get; set; } /// /// /// public string WorkPlace { get; set; } /// /// /// public string WorkGroup { get; set; } /// /// /// public string NestingName { get; set; } /// /// /// public string Classification { get; set; } /// /// /// public string Grade { get; set; } /// /// /// public string ArticleType { get; set; } /// /// /// public string ArticleNumber { get; set; } /// /// /// public string DestinationStorageLocation { get; set; } /// /// /// public string SourceStorageLocation { get; set; } /// /// /// public string Quantity { get; set; } /// /// /// public string PickListItemNo { get; set; } } }