mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-07 15:07:41 +00:00
15 lines
No EOL
247 B
C#
15 lines
No EOL
247 B
C#
using System;
|
|
|
|
namespace NzbDrone.Providers
|
|
{
|
|
public class ConsoleProvider
|
|
{
|
|
public virtual void WaitForClose()
|
|
{
|
|
while (true)
|
|
{
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|
|
} |