aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SQLExaminer/SMItem.cs
blob: 0d981bf57cd7c69d4ac4514cf1e857b0ab9cd573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 SMItem
    {
        [XmlAttribute("schema1")]
        public String Schema1 { get; set; }

        [XmlAttribute("schema2")]
        public String Schema2 { get; set; }
    }
}