mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-15 02:34:56 +00:00
15 lines
248 B
C#
15 lines
248 B
C#
using System;
|
|
|
|
namespace NzbDrone.Providers
|
|
{
|
|
public class ConsoleProvider
|
|
{
|
|
public virtual void WaitForClose()
|
|
{
|
|
while (true)
|
|
{
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|
|
}
|