aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Comparison/HardwareComponentPropertyResult.cs
blob: d57413af13582a635770ac00d3c8a85c57e48169 (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;

namespace Tango.MachineStudio.HardwareDesigner.Comparison
{
    public class HardwareComponentPropertyResult
    {
        public String PropertyName { get; set; }
        public String Value1 { get; set; }
        public String Value2 { get; set; }

        public bool IsDifferent
        {
            get { return Value1 != Value2; }
        }
    }
}