| | | 1 | | using DocumentFormat.OpenXml.Office2010.ExcelAc; |
| | | 2 | | using System.ComponentModel.DataAnnotations.Schema; |
| | | 3 | | using System.Collections.Generic; |
| | | 4 | | |
| | | 5 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 6 | | { |
| | | 7 | | [Table("refDeliveryType")] |
| | | 8 | | public class DeliveryType : EnumRecord, ITrackableRecord |
| | | 9 | | { |
| | | 10 | | /// <summary> |
| | | 11 | | /// Типы стоимости доставок |
| | | 12 | | /// </summary> |
| | 0 | 13 | | public List<DeliveryCostType> DeliveryCostTypes { get; set; } |
| | | 14 | | /// <summary> |
| | | 15 | | /// Кластера |
| | | 16 | | /// </summary> |
| | 0 | 17 | | public List<ClusterDeliveryType> ClusterDeliveryTypes { get; set; } |
| | | 18 | | } |
| | | 19 | | } |