| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Linq; |
| | | 4 | | using System.Threading.Tasks; |
| | | 5 | | |
| | | 6 | | namespace SVETA.Api.Data.DTO.Showcase |
| | | 7 | | { |
| | | 8 | | public class ShowcaseGoodDTO |
| | | 9 | | { |
| | 0 | 10 | | public long Id { get; set; } |
| | | 11 | | |
| | 0 | 12 | | public CategoryForFeedDTO Category { get; set; } |
| | | 13 | | |
| | 0 | 14 | | public BarCodeDTO MainBarcode { get; set; } |
| | | 15 | | |
| | 0 | 16 | | public List<BarCodeDTO> Barcodes { get; set; } |
| | | 17 | | |
| | 0 | 18 | | public List<ShowcaseGoodLabelDTO> Labels { get; set; } |
| | | 19 | | |
| | 0 | 20 | | public string Name { get; set; } |
| | | 21 | | |
| | 0 | 22 | | public string VendorCode { get; set; } |
| | | 23 | | |
| | 0 | 24 | | public List<PhotoDTO> Photos { get; set; } |
| | | 25 | | |
| | 0 | 26 | | public decimal MinDeliveryLot { get; set; } |
| | | 27 | | |
| | 0 | 28 | | public int ExpirationDays { get; set; } |
| | | 29 | | |
| | 0 | 30 | | public decimal Weight { get; set; } |
| | | 31 | | |
| | 0 | 32 | | public decimal Width { get; set; } |
| | | 33 | | |
| | 0 | 34 | | public decimal Height { get; set; } |
| | | 35 | | |
| | 0 | 36 | | public decimal Thickness { get; set; } |
| | | 37 | | |
| | 0 | 38 | | public EnumDB_DTO VatKind { get; set; } |
| | | 39 | | |
| | 0 | 40 | | public string CustomDeclarationNumber { get; set; } |
| | | 41 | | |
| | 0 | 42 | | public EnumDB_DTO UnitKind { get; set; } |
| | | 43 | | |
| | 0 | 44 | | public string ConformityCertNumber { get; set; } |
| | | 45 | | |
| | 0 | 46 | | public int GroupPackNesting { get; set; } |
| | | 47 | | |
| | 0 | 48 | | public decimal GroupPackWidth { get; set; } |
| | | 49 | | |
| | 0 | 50 | | public decimal GroupPackHeight { get; set; } |
| | | 51 | | |
| | 0 | 52 | | public decimal GroupPackThickness { get; set; } |
| | | 53 | | |
| | 0 | 54 | | public int PalletNesting { get; set; } |
| | | 55 | | |
| | 0 | 56 | | public IdNameDTO Brand { get; set; } |
| | | 57 | | |
| | 0 | 58 | | public IdNameDTO SubBrand { get; set; } |
| | | 59 | | |
| | 0 | 60 | | public IdNameDTO Country { get; set; } |
| | | 61 | | |
| | 0 | 62 | | public decimal RestQuantity { get; set; } |
| | | 63 | | |
| | | 64 | | decimal minQuantity; |
| | | 65 | | |
| | 0 | 66 | | public decimal MinQuantity { get => minQuantity > 0 ? minQuantity : 1; set => minQuantity = value; } |
| | | 67 | | |
| | | 68 | | decimal pickingQuantum; |
| | | 69 | | |
| | 0 | 70 | | public decimal PickingQuantum { get => pickingQuantum > 0 ? pickingQuantum : 1; set => pickingQuantum = value; } |
| | | 71 | | |
| | 0 | 72 | | public decimal Price { get; set; } |
| | | 73 | | |
| | 0 | 74 | | public decimal? OldPrice { get; set; } |
| | | 75 | | |
| | 0 | 76 | | public int? Discount { get; set; } |
| | | 77 | | |
| | 0 | 78 | | public string LabelColor { get; set; } |
| | | 79 | | |
| | 0 | 80 | | public string TextColor { get; set; } |
| | | 81 | | |
| | 0 | 82 | | public string UniqueCode { get; set; } |
| | | 83 | | |
| | 0 | 84 | | public decimal Transparency { get; set; } |
| | | 85 | | } |
| | | 86 | | } |