aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs
diff options
context:
space:
mode:
authorShai Frieder <Shai.Frieder@twine-s.com>2019-10-07 17:27:00 +0300
committerShai Frieder <Shai.Frieder@twine-s.com>2019-10-07 17:27:00 +0300
commitf32bc5e5345f5386d4a82bc7270db79a0c7947ac (patch)
tree642ce82fad40cc07adc53432cf83158f727b1f7b /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs
parentf6b0a945f86ee91cebd2d6726c06db93cdad0934 (diff)
parenteae70d7ebcb1007b407bac2ba27da5a5fef337db (diff)
downloadTango-f32bc5e5345f5386d4a82bc7270db79a0c7947ac.tar.gz
Tango-f32bc5e5345f5386d4a82bc7270db79a0c7947ac.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs19
1 files changed, 19 insertions, 0 deletions
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
{
+ /// <summary>
+ /// Represents a hardware version collection.
+ /// </summary>
+ /// <seealso cref="Tango.Core.ExtendedObject" />
+ /// <seealso cref="Tango.MachineStudio.MachineDesigner.Models.IHasDifference" />
public class HardwareCollection : ExtendedObject, IHasDifference
{
+ /// <summary>
+ /// Gets or sets the name of the collection.
+ /// </summary>
public String CollectionName { get; set; }
+ /// <summary>
+ /// Gets or sets the components.
+ /// </summary>
public SynchronizedObservableCollection<HardwareComponent> Components { get; set; }
+
+ /// <summary>
+ /// Gets a value indicating whether this instance has differences.
+ /// </summary>
public bool HasDifferences
{
get
@@ -19,6 +34,10 @@ namespace Tango.MachineStudio.MachineDesigner.Models
return Components.Any(item => item.HasDifferences);
}
}
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="HardwareCollection"/> class.
+ /// </summary>
public HardwareCollection()
{
Components = new SynchronizedObservableCollection<HardwareComponent>();