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