diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-11-25 16:49:13 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-11-25 16:49:13 +0200 |
| commit | 810a75cac71a86452d553a5d06f83fca44f9c0a1 (patch) | |
| tree | 9159765c1da22a51ee74a917cb17d7bf8af7a76b /Software/Visual_Studio/FSE/Tango.FSE.Common | |
| parent | 12db705d26e4737bb4b12bd1e1980d473871c121 (diff) | |
| download | Tango-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.cs | 2 | ||||
| -rw-r--r-- | Software/Visual_Studio/FSE/Tango.FSE.Common/IFSEModule.cs | 2 |
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; } } } |
