mirror of
https://github.com/Readarr/Readarr
synced 2025-12-31 12:42:25 +01:00
13 lines
No EOL
325 B
C#
13 lines
No EOL
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");
|
|
}
|
|
}
|
|
} |