| | | 1 | | using System.ComponentModel.DataAnnotations; |
| | | 2 | | |
| | | 3 | | namespace SVETA.Api.Data.DTO |
| | | 4 | | { |
| | | 5 | | public class MovementItemResponseDTO |
| | | 6 | | { |
| | | 7 | | public long Id { get; set; } |
| | | 8 | | public ItemGoodDTO Good { get; set; } |
| | | 9 | | public decimal Price { get; set; } |
| | | 10 | | public decimal PriceWithoutVat { get; set; } |
| | | 11 | | public decimal Quantity { get; set; } |
| | | 12 | | |
| | | 13 | | public decimal? OldPrice { get; set; } |
| | | 14 | | |
| | | 15 | | public int? Discount { get; set; } |
| | | 16 | | |
| | | 17 | | public string LabelColor { get; set; } |
| | | 18 | | public decimal ShipmentQuantity { get; set; } |
| | | 19 | | } |
| | | 20 | | |
| | | 21 | | public class MovementItemExchangeResponseDto |
| | | 22 | | { |
| | 0 | 23 | | public string BarCode { get; set; } |
| | | 24 | | |
| | 0 | 25 | | public string VendorCode { get; set; } |
| | | 26 | | |
| | 0 | 27 | | public string UniqueCode { get; set; } |
| | | 28 | | |
| | 0 | 29 | | public decimal Quantity { get; set; } |
| | | 30 | | |
| | 0 | 31 | | public decimal Price { get; set; } |
| | | 32 | | } |
| | | 33 | | } |