aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SQLExaminer/Object.cs
blob: 97ed81f0dadb15c3962e9005d18d90c39281fc06 (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
30
31
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 Object
    {
        [XmlAttribute("name")]
        public String Name { get; set; }

        [XmlAttribute("type")]
        public String Type { get; set; }

        [XmlAttribute("records")]
        public String Records { get; set; }

        public List<Column> Columns { get; set; }

        public List<Query> Queries { get; set; }

        public Object()
        {
            Columns = new List<Column>();
            Queries = new List<Query>();
        }
    }
}