mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
00283e3d6e
closes #2366
17 lines
412 B
C#
17 lines
412 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.EnvironmentInfo
|
|
{
|
|
public interface IRuntimeInfo
|
|
{
|
|
DateTime StartTime { get; }
|
|
bool IsUserInteractive { get; }
|
|
bool IsAdmin { get; }
|
|
bool IsWindowsService { get; }
|
|
bool IsWindowsTray { get; }
|
|
bool IsExiting { get; set; }
|
|
bool RestartPending { get; set; }
|
|
string ExecutingApplication { get; }
|
|
}
|
|
}
|