| | | 1 | | using System.Collections.Generic; |
| | | 2 | | |
| | | 3 | | namespace SVETA.Api.Data.DTO.Goods |
| | | 4 | | { |
| | | 5 | | public class GoodExchangeDto |
| | | 6 | | { |
| | 20 | 7 | | public string Barcode { get; set; } |
| | 70 | 8 | | public string Name { get; set; } |
| | 60 | 9 | | public string VendorCode { get; set; } |
| | 30 | 10 | | public string CategoryName { get; set; } |
| | 0 | 11 | | public string ManufacturerName { get; set; } |
| | 20 | 12 | | public int ExpirationDays { get; set; } |
| | 0 | 13 | | public decimal Weight { get; set; } |
| | 20 | 14 | | public decimal Width { get; set; } |
| | 20 | 15 | | public decimal Height { get; set; } |
| | 20 | 16 | | public decimal Thickness { get; set; } |
| | 20 | 17 | | public int VatName { get; set; } |
| | 20 | 18 | | public string CustomDeclarationNumber { get; set; } |
| | 30 | 19 | | public string UnitName { get; set; } |
| | 30 | 20 | | public string CountryName { get; set; } |
| | 20 | 21 | | public string ConformityCertNumber { get; set; } |
| | 20 | 22 | | public decimal GroupPackNesting { get; set; } |
| | 20 | 23 | | public decimal GroupPackWidth { get; set; } |
| | 20 | 24 | | public decimal GroupPackHeight { get; set; } |
| | 20 | 25 | | public decimal GroupPackThickness { get; set; } |
| | 20 | 26 | | public decimal PalletNesting { get; set; } |
| | 30 | 27 | | public string BrandName { get; set; } |
| | 0 | 28 | | public string SubBrandName { get; set; } |
| | 20 | 29 | | public int PickingQuantum { get; set; } |
| | 20 | 30 | | public int MinQuantity { get; set; } |
| | 20 | 31 | | public bool ShowcaseVisible { get; set; } |
| | | 32 | | } |
| | | 33 | | } |