using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShwasherSys.Order.Dto.OrderBookStore { public class BookStoreAddsDto { public int OrderItemId { get; set; } public List AddItems { get; set; } } public class BookStoreAddInputDto { public string ProductNo { get; set; } public Decimal? Quantity { get; set; } public Decimal? QuantityPerPack { get; set; } public Decimal? PackageCount { get; set; } public string ProductBatchNum { get; set; } public string StoreLocationNo { get; set; } public string CurrentProductStoreHouseNo { get; set; } public string CustomerId { get; set; } } }