| | | 1 | | using System; |
| | | 2 | | using System.ComponentModel.DataAnnotations; |
| | | 3 | | using System.Runtime.Serialization; |
| | | 4 | | |
| | | 5 | | namespace SVETA.Api.Data.DTO.Goods |
| | | 6 | | { |
| | | 7 | | public class GoodInputDTO |
| | | 8 | | { |
| | | 9 | | [NotNullOrWhiteSpaceValidator] |
| | 0 | 10 | | public string Name { get; set; } |
| | | 11 | | |
| | | 12 | | [NotNullOrWhiteSpaceValidator] |
| | 0 | 13 | | public string Barcode { get; set; } |
| | | 14 | | |
| | 0 | 15 | | public string AdditionalBarcode { get; set; } |
| | | 16 | | |
| | 0 | 17 | | public long CategoryId { get; set; } |
| | | 18 | | |
| | 0 | 19 | | public long BrandId { get; set; } |
| | | 20 | | |
| | 0 | 21 | | public long? SubBrandId { get; set; } |
| | | 22 | | |
| | 0 | 23 | | public int UnitKindId { get; set; } |
| | | 24 | | |
| | 0 | 25 | | public bool IsActive { get; set; } |
| | | 26 | | |
| | 0 | 27 | | public long CountryId { get; set; } |
| | | 28 | | |
| | 0 | 29 | | public string ConformityCertNumber { get; set; } |
| | | 30 | | |
| | 0 | 31 | | public string CustomDeclarationNumber { get; set; } |
| | | 32 | | |
| | 0 | 33 | | public string VendorCode { get; set; } |
| | | 34 | | |
| | 0 | 35 | | public int Vat { get; set; } |
| | | 36 | | |
| | 0 | 37 | | public decimal Weight { get; set; } |
| | | 38 | | |
| | 0 | 39 | | public decimal Width { get; set; } |
| | | 40 | | |
| | 0 | 41 | | public decimal Height { get; set; } |
| | | 42 | | |
| | 0 | 43 | | public decimal Thickness { get; set; } |
| | | 44 | | |
| | 0 | 45 | | public int GroupPackNesting { get; set; } |
| | | 46 | | |
| | 0 | 47 | | public decimal GroupPackWidth { get; set; } |
| | | 48 | | |
| | 0 | 49 | | public decimal GroupPackHeight { get; set; } |
| | | 50 | | |
| | 0 | 51 | | public decimal GroupPackThickness { get; set; } |
| | | 52 | | |
| | 0 | 53 | | public decimal MinDeliveryLot { get; set; } |
| | | 54 | | |
| | 0 | 55 | | public int? ExpirationDays { get; set; } |
| | | 56 | | } |
| | | 57 | | } |