mirror of
https://github.com/Readarr/Readarr
synced 2026-04-29 00:01:17 +02: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; }
|
|
}
|
|
}
|
|
}
|