aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-10-10 13:31:15 +0300
committerShlomo Hecht <shlomo@twine-s.com>2019-10-10 13:31:15 +0300
commit25590d26751fbc1d72575f35571f3f0a50da6113 (patch)
tree52e025c0b5f1187554ca85a11311761cf1f0c20b /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Models/HardwareCollection.cs
parent48561099b141773d71438dcdf09c65ace4138b8b (diff)
parent07280066f97510892838c451bee6c066a7591131 (diff)
downloadTango-25590d26751fbc1d72575f35571f3f0a50da6113.tar.gz
Tango-25590d26751fbc1d72575f35571f3f0a50da6113.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.cs21
1 files changed, 20 insertions, 1 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 765bc9dfd..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
{
- public class HardwareCollection : ExtendedObject
+ /// <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>();