From 583d3716e37a9be80c8bb248215f343ed4fcd2d1 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 7 Oct 2019 15:51:21 +0300 Subject: Redundant. --- .../Models/HardwareCollection.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs index 7c774e65f..79c7fc946 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs @@ -7,11 +7,26 @@ using Tango.Core; namespace Tango.MachineStudio.MachineDesigner.Models { + /// + /// Represents a hardware version collection. + /// + /// + /// public class HardwareCollection : ExtendedObject, IHasDifference { + /// + /// Gets or sets the name of the collection. + /// public String CollectionName { get; set; } + /// + /// Gets or sets the components. + /// public SynchronizedObservableCollection Components { get; set; } + + /// + /// Gets a value indicating whether this instance has differences. + /// public bool HasDifferences { get @@ -19,6 +34,10 @@ namespace Tango.MachineStudio.MachineDesigner.Models return Components.Any(item => item.HasDifferences); } } + + /// + /// Initializes a new instance of the class. + /// public HardwareCollection() { Components = new SynchronizedObservableCollection(); -- cgit v1.3.1