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