aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SQLExaminer/ReportLine.cs
blob: 43a9d215778246fd0b3777bcca6881505866b2fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;

namespace Tango.SQLExaminer
{
    [XmlType("Line")]
    public class ReportLine
    {
        [XmlAttribute("status")]
        public String Status { get; set; }

        public String Left { get; set; }

        public String Right { get; set; }
    }
}