1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-31 18:36:15 -04:00
Files
Radarr/src/NzbDrone/MessageBoxUserAlert.cs
2017-01-05 20:42:02 +01:00

13 lines
323 B
C#

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