aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.HardwareVersionComparison/HardwareComponentCompareResult.cs
blob: 9a3623e153bdaaa5c68a04aec231e275ac8be266 (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
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;

namespace Tango.HardwareVersionComparison
{
    public class HardwareComponentCompareResult 
    {
        public String ComponentName { get; set; }
        
        public bool HasComponent1 { get; set; }

        public bool HasComponent2 { get; set; }

        public SynchronizedObservableCollection<HardwareComponentPropertyResult> Properties { get; set; }

        public bool HasDifferences
        {
            get
            {
                return Properties.Any(item => item.IsDifferent);
            }
        }

        public HardwareComponentCompareResult()
        {
            Properties = new SynchronizedObservableCollection<HardwareComponentPropertyResult>();
        }
    }
}