using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Media.Imaging; using Tango.DAL.Observables; namespace Tango.MachineStudio.Common { public interface IStudioModule : IDisposable { String Name { get; } String Description { get; } BitmapSource Image { get; } FrameworkElement MainView { get; } Permissions Permission { get; } bool IsInitialized { get; } void Initialize(); } }