aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common
diff options
context:
space:
mode:
authorRoy <Roy.mail.net@gmail.com>2022-11-25 16:49:13 +0200
committerRoy <Roy.mail.net@gmail.com>2022-11-25 16:49:13 +0200
commit810a75cac71a86452d553a5d06f83fca44f9c0a1 (patch)
tree9159765c1da22a51ee74a917cb17d7bf8af7a76b /Software/Visual_Studio/FSE/Tango.FSE.Common
parent12db705d26e4737bb4b12bd1e1980d473871c121 (diff)
downloadTango-810a75cac71a86452d553a5d06f83fca44f9c0a1.tar.gz
Tango-810a75cac71a86452d553a5d06f83fca44f9c0a1.zip
Fixed issue with RSM module authorization.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Common/FSEModuleBase.cs2
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Common/IFSEModule.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/FSEModuleBase.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/FSEModuleBase.cs
index 5e30b717e..0d6f5edae 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.Common/FSEModuleBase.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/FSEModuleBase.cs
@@ -36,7 +36,7 @@ namespace Tango.FSE.Common
/// <summary>
/// Gets the permission required to see and load this module.
/// </summary>
- public abstract Permissions Permission { get; }
+ public abstract Permissions[] Permission { get; }
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/IFSEModule.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/IFSEModule.cs
index 1728edee3..9313847bd 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.Common/IFSEModule.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/IFSEModule.cs
@@ -28,6 +28,6 @@ namespace Tango.FSE.Common
/// <summary>
/// Gets the permission required to see and load this module.
/// </summary>
- Permissions Permission { get; }
+ Permissions[] Permission { get; }
}
}