mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
20 lines
361 B
C#
20 lines
361 B
C#
using System;
|
|
|
|
namespace NzbDrone.Providers
|
|
{
|
|
public class ConsoleProvider
|
|
{
|
|
public virtual void WaitForClose()
|
|
{
|
|
while (true)
|
|
{
|
|
System.Console.ReadLine();
|
|
}
|
|
}
|
|
|
|
public virtual void PrintHelp()
|
|
{
|
|
System.Console.WriteLine("Help");
|
|
}
|
|
}
|
|
} |