| | | 1 | | using System; |
| | | 2 | | using System.ComponentModel.DataAnnotations; |
| | | 3 | | using System.ComponentModel.DataAnnotations.Schema; |
| | | 4 | | using WinSolutions.Sveta.Server.Data.DataModel.Kinds; |
| | | 5 | | using CrmVtbc.Integration; |
| | | 6 | | |
| | | 7 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 8 | | { |
| | | 9 | | public class EnumRecord : ExternalRecord |
| | | 10 | | { |
| | | 11 | | |
| | | 12 | | /// <summary> |
| | | 13 | | /// Название |
| | | 14 | | /// </summary> |
| | | 15 | | [CrmMap("Name"), CrmOnlyLoad] |
| | | 16 | | [Required] |
| | 31848 | 17 | | public string Name { get; set; } |
| | | 18 | | |
| | | 19 | | |
| | | 20 | | /// <summary> |
| | | 21 | | /// Код |
| | | 22 | | /// </summary> |
| | | 23 | | [Required] |
| | 54210 | 24 | | public string Code { get; set; } = ""; |
| | | 25 | | |
| | | 26 | | /// <summary> |
| | | 27 | | /// Описание |
| | | 28 | | /// </summary> |
| | 30304 | 29 | | public string Description { get; set; } |
| | | 30 | | } |
| | | 31 | | } |