mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 18:59:54 +00:00
17 lines
337 B
C#
17 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; }
|
|
}
|
|
}
|
|
}
|