mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
a4a58c59f1
fixed update app issue.
13 lines
325 B
C#
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");
|
|
}
|
|
}
|
|
} |