mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
Moved source code under src folder - massive change
This commit is contained in:
13
src/NzbDrone/MessageBoxUserAlert.cs
Normal file
13
src/NzbDrone/MessageBoxUserAlert.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user