Lidarr/NzbDrone/Providers/EnviromentProvider.cs

17 lines
336 B
C#
Raw Normal View History

using System;
namespace NzbDrone.Providers
{
public class EnviromentProvider
{
public virtual String LogPath
{
get { return Environment.CurrentDirectory; }
}
public virtual bool IsUserInteractive
{
get { return Environment.UserInteractive; }
}
}
2011-10-07 06:57:43 +00:00
}