mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
16 lines
431 B
C#
16 lines
431 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.EnvironmentInfo
|
|
{
|
|
public interface IRuntimeInfo
|
|
{
|
|
Boolean IsUserInteractive { get; }
|
|
Boolean IsAdmin { get; }
|
|
Boolean IsWindowsService { get; }
|
|
Boolean IsConsole { get; }
|
|
Boolean IsRunning { get; set; }
|
|
Boolean RestartPending { get; set; }
|
|
String ExecutingApplication { get; }
|
|
String RuntimeVersion { get; }
|
|
}
|
|
} |