mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
a4a58c59f1
fixed update app issue.
15 lines
364 B
C#
15 lines
364 B
C#
using NzbDrone.Host;
|
|
|
|
namespace NzbDrone.Console
|
|
{
|
|
public class ConsoleAlerts : IUserAlert
|
|
{
|
|
public void Alert(string message)
|
|
{
|
|
System.Console.WriteLine();
|
|
System.Console.WriteLine(message);
|
|
System.Console.WriteLine("Press enter to continue");
|
|
System.Console.ReadLine();
|
|
}
|
|
}
|
|
} |