aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Scripting/Properties
ModeNameSize
-rw-r--r--AssemblyInfo.cs243logstatsplain
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;

namespace Tango.HardwareVersionComparison
{
    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; }
        }

    }
}