1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-10 23:29:53 +02:00
Sonarr/NzbDrone/Providers/ConsoleProvider.cs

15 lines
247 B
C#
Raw Normal View History

2011-10-07 06:37:41 +03:00
using System;
namespace NzbDrone.Providers
{
public class ConsoleProvider
{
public virtual void WaitForClose()
{
while (true)
{
Console.ReadLine();
}
}
}
2011-10-07 09:57:43 +03:00
}