1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00
Radarr/NzbDrone/MessageBoxUserAlert.cs
kay.one a4a58c59f1 cleaned up app startup logic.
fixed update app issue.
2013-08-15 19:20:54 -07:00

13 lines
325 B
C#

using System.Windows.Forms;
using NzbDrone.Host;
namespace NzbDrone
{
public class MessageBoxUserAlert : IUserAlert
{
public void Alert(string message)
{
MessageBox.Show(text: message, buttons: MessageBoxButtons.OK, icon: MessageBoxIcon.Warning, caption: "NzbDrone");
}
}
}