mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
17 lines
No EOL
336 B
C#
17 lines
No EOL
336 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; }
|
|
}
|
|
}
|
|
} |