aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/generated by cgit v1.3.1 (git 2.54.0) at 2026-07-17 20:14:30 +0000
="k">using Tango.Core; namespace Tango.MachineStudio.HardwareDesigner.Comparison { /// <summary> /// class HardwareCompareResult contains collection of HardwareComponentCollectionCompareResult /// </summary> /// <seealso cref="Tango.MachineStudio.HardwareDesigner.Comparison.IHasDifference" /> public class HardwareCompareResult: IHasDifference { /// <summary> /// Gets or sets the collections. /// </summary> /// <value> /// The collections. /// </value> public SynchronizedObservableCollection<HardwareComponentCollectionCompareResult> Collections { get; set; } public bool HasDifferences { get { return Collections.Any(item => item.HasDifferences); } } public HardwareCompareResult() { Collections = new SynchronizedObservableCollection<HardwareComponentCollectionCompareResult>(); } } }