mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 05:45:31 +02:00
19 lines
320 B
C#
19 lines
320 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Providers
|
|
{
|
|
public class ConsoleProvider
|
|
{
|
|
public virtual void WaitForClose()
|
|
{
|
|
while (true)
|
|
{
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|
|
}
|