markus / ConvertService / ServiceBase / Markus.Service.DataBase.Dapper / Entities / PROPERTIES.cs @ 30d84e1a
이력 | 보기 | 이력해설 | 다운로드 (1.13 KB)
1 |
using System; |
---|---|
2 |
using System.ComponentModel.DataAnnotations; |
3 |
/* |
4 |
This class requires the System.ComponentModel.Annotations package and you can download it from https://www.nuget.org/packages/System.ComponentModel.Annotations |
5 |
*/ |
6 |
namespace Markus.Service.DataBase.Entities |
7 |
{ |
8 |
public class DEFINE_PROPERTIES |
9 |
{ |
10 |
public class TYPE |
11 |
{ |
12 |
public const string INITIAL_CATALOG = "InitialCatalog"; |
13 |
public const string DISPLAY_COLOR = "DisplayColor"; |
14 |
public const string TILE_SOURCE_PATH = "TileSorcePath"; |
15 |
public const string TILE_SOURCE_STORAGE = "TileSorceStorage"; |
16 |
public const string FILNAL_STORAGE_LOCAL = "FinalPDFStorageLocal"; |
17 |
public const string FILNAL_STORAGE_REMOTE = "FinalPDFStorageRemote"; |
18 |
|
19 |
public const string SERVER_PATH_INTERNAL = "InternalComment"; |
20 |
public const string SERVER_PATH_EXTERNAL = "ExternalComment"; |
21 |
|
22 |
public const string VIPS_SETTING = "VipsSetting"; |
23 |
} |
24 |
} |
25 |
|
26 |
public class PROPERTIES |
27 |
{ |
28 |
[Key] |
29 |
public int ID {get; set;} |
30 |
[Required] |
31 |
[MaxLength(50)] |
32 |
public string TYPE {get; set;} |
33 |
[Required] |
34 |
[MaxLength(100)] |
35 |
public string PROPERTY {get; set;} |
36 |
[Required] |
37 |
public string VALUE {get; set;} |
38 |
} |
39 |
} |
40 |
|