From 61a68af94273563e1179b49062ac96b8a627a72a Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 14 Jun 2018 17:32:09 +0300 Subject: Working on PPC. --- .../PPC/Tango.PPC.Common/PPCModuleAttribute.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (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 933791268..e166fef04 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCModuleAttribute.cs @@ -18,6 +18,11 @@ namespace Tango.PPC.Common /// public int Index { get; private set; } + /// + /// Gets or sets the home view. + /// + public String HomeViewName { get; set; } + /// /// Initializes a new instance of the class. /// @@ -26,5 +31,15 @@ namespace Tango.PPC.Common { Index = index; } + + /// + /// Initializes a new instance of the class. + /// + /// The module index. + /// Name of the home view. + public PPCModuleAttribute(int index, String homeViewName) : this(index) + { + HomeViewName = homeViewName; + } } } -- cgit v1.3.1