From a775178c063082eb6a401b4254a046133840af03 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 14 Jun 2018 15:57:24 +0300 Subject: Working on PPC... --- .../PPC/Tango.PPC.Common/PPCModuleAttribute.cs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs') 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 { + /// + /// Represents a attribute + /// + /// [AttributeUsage(AttributeTargets.Class)] public class PPCModuleAttribute : Attribute { - public int Index { get; set; } + /// + /// Gets or sets the module index. + /// + public int Index { get; private set; } + /// + /// Initializes a new instance of the class. + /// + /// The module index. public PPCModuleAttribute(int index) { Index = index; -- cgit v1.3.1