namespace ServerManagerTool.Plugin.Common
{
public interface IAlertPlugin : IPlugin
{
///
/// Handles the alert message passed for the profile.
///
/// The type of alert message.
/// The name of the profile the alert message is associated with.
/// The message of the alert.
void HandleAlert(AlertType alertType, string profileName, string alertMessage);
}
}