From a20fd4bd769aeccd1fd1f20273f895c92a5b5bb8 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 14 Jan 2018 15:24:49 +0200 Subject: Added code comments for: MachineStudio.Common. --- .../Tango.MachineStudio.Common/IStudioModule.cs | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/IStudioModule.cs') diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/IStudioModule.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/IStudioModule.cs index 902a45a2f..21377fb5f 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/IStudioModule.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/IStudioModule.cs @@ -9,20 +9,45 @@ using Tango.DAL.Observables; namespace Tango.MachineStudio.Common { + /// + /// Represents a Machine Studio module. + /// + /// public interface IStudioModule : IDisposable { + /// + /// Gets the module name. + /// String Name { get; } + /// + /// Gets the module description. + /// String Description { get; } + /// + /// Gets the module cover image. + /// BitmapSource Image { get; } + /// + /// Gets the module entry point view. + /// FrameworkElement MainView { get; } + /// + /// Gets the permission required to see and load this module. + /// Permissions Permission { get; } + /// + /// Gets a value indicating whether this module has been initialized. + /// bool IsInitialized { get; } + /// + /// Perform any operations required to initialize this module. + /// void Initialize(); } } -- cgit v1.3.1