mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
18 lines
337 B
C#
18 lines
337 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NzbDrone.Providers
|
|||
|
{
|
|||
|
public class EnviromentProvider
|
|||
|
{
|
|||
|
public virtual String LogPath
|
|||
|
{
|
|||
|
get { return Environment.CurrentDirectory; }
|
|||
|
}
|
|||
|
|
|||
|
public virtual bool IsUserInteractive
|
|||
|
{
|
|||
|
get { return Environment.UserInteractive; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|