blob: 88dc6b2262d210e678220952cd31c3aa0ab5e4f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Tango.Synchronization.Conversion
{
public enum TriggerEvent
{
Delete,
Update,
Insert
}
public enum TriggerType
{
After,
Before
}
public class TriggerSchema
{
public string Name;
public TriggerEvent Event;
public TriggerType Type;
public string Body;
public string Table;
}
}
|