using System;
namespace Artemis.Core;
///
/// Represents a configuration dialog for a
///
public interface IPluginConfigurationDialog
{
///
/// The type of view model the tab contains
///
Type Type { get; }
///
/// A value indicating whether it's mandatory to configure this plugin.
/// If set to , the dialog will open the first time the plugin is enabled.
///
bool IsMandatory { get; }
}