aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
index 45c750e56..933791268 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
@@ -6,11 +6,22 @@ using System.Threading.Tasks;
namespace Tango.PPC.Common
{
+ /// <summary>
+ /// Represents a <see cref="IPPCModule"/> attribute
+ /// </summary>
+ /// <seealso cref="System.Attribute" />
[AttributeUsage(AttributeTargets.Class)]
public class PPCModuleAttribute : Attribute
{
- public int Index { get; set; }
+ /// <summary>
+ /// Gets or sets the module index.
+ /// </summary>
+ public int Index { get; private set; }
+ /// <summary>
+ /// Initializes a new instance of the <see cref="PPCModuleAttribute"/> class.
+ /// </summary>
+ /// <param name="index">The module index.</param>
public PPCModuleAttribute(int index)
{
Index = index;