blob: 7020e0d25b53599dcddc9deebf374f0deb31ed24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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 ObjectList
{
[XmlAttribute("type")]
public String Type { get; set; }
[XmlElement("")]
public List<Object> Object { get; set; }
public ObjectList()
{
Object = new List<Object>();
}
}
}
|