blob: fd1b95113c7ee48c8945b8b09493b05bca5e884f (
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
29
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace Tango.SQLExaminer
{
public class Action
{
[XmlAttribute("type")]
public String Type { get; set; }
[XmlAttribute("path")]
public String Path { get; set; }
[XmlAttribute("reportType")]
public String ReportType { get; set; }
[XmlAttribute("reportOn")]
public String ReportOn { get; set; }
public Action()
{
Type = "synchronize";
}
}
}
|