aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-06-14 17:32:09 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-06-14 17:32:09 +0300
commit61a68af94273563e1179b49062ac96b8a627a72a (patch)
treeb435c82b2046ece012b3555afa77c660f0a2b0ca /Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
parent580cb401e8b31501cb3fbee1b9f59a67ad636633 (diff)
downloadTango-61a68af94273563e1179b49062ac96b8a627a72a.tar.gz
Tango-61a68af94273563e1179b49062ac96b8a627a72a.zip
Working on PPC.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
index 933791268..e166fef04 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs
@@ -19,6 +19,11 @@ namespace Tango.PPC.Common
public int Index { get; private set; }
/// <summary>
+ /// Gets or sets the home view.
+ /// </summary>
+ public String HomeViewName { get; set; }
+
+ /// <summary>
/// Initializes a new instance of the <see cref="PPCModuleAttribute"/> class.
/// </summary>
/// <param name="index">The module index.</param>
@@ -26,5 +31,15 @@ namespace Tango.PPC.Common
{
Index = index;
}
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="PPCModuleAttribute"/> class.
+ /// </summary>
+ /// <param name="index">The module index.</param>
+ /// <param name="homeViewName">Name of the home view.</param>
+ public PPCModuleAttribute(int index, String homeViewName) : this(index)
+ {
+ HomeViewName = homeViewName;
+ }
}
}