markus / MarkusLogview / MarkusConsoleApplication / HubConfiguration.cs @ master
이력 | 보기 | 이력해설 | 다운로드 (1.04 KB)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.IO; |
4 |
using System.Linq; |
5 |
using System.Text; |
6 |
|
7 |
namespace MarkusConsoleApplication |
8 |
{ |
9 |
public class HubConfiguration |
10 |
{ |
11 |
public class ConvertSetting |
12 |
{ |
13 |
public string InvokeInsert { get; set; } = "BroadcastConvertTableInserted"; |
14 |
public string InvokeChange { get; set; } = "BroadcastConvertTableChanged"; |
15 |
public string InvokeDelete { get; set; } = "BroadcastConvertTableDeleted"; |
16 |
} |
17 |
|
18 |
public class FinalSetting |
19 |
{ |
20 |
public string InvokeInsert { get; set; } = "BroadcastMergeTableInserted"; |
21 |
public string InvokeChange { get; set; } = "BroadcastMergeTableChanged"; |
22 |
public string InvokeDelete { get; set; } = "BroadcastMergeTableDeleted"; |
23 |
} |
24 |
|
25 |
public class DetectedType |
26 |
{ |
27 |
public string DataInsert { get; set; } = "Insert"; |
28 |
public string DataUpdate { get; set; } = "Update"; |
29 |
public string DataDelete { get; set; } = "Delete"; |
30 |
} |
31 |
} |
32 |
} |