diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-29 19:18:05 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-29 19:18:05 -0500 |
| commit | d39f8a11614de8850de9a9b433c1a4f190ccadc9 (patch) | |
| tree | b95d1c1142d104d201a5a0f92245a2bb7e7b19d2 /MediaBrowser.Model/System | |
| parent | fb69d5b76d9f43979037ee2bb7469917c6e82633 (diff) | |
Added is running as service to IServerApplicationHost
Diffstat (limited to 'MediaBrowser.Model/System')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index 3082e80b63..24707b29b3 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -19,7 +19,13 @@ namespace MediaBrowser.Model.System /// </summary> /// <value>The operating sytem.</value> public string OperatingSystem { get; set; } - + + /// <summary> + /// Gets or sets a value indicating whether this instance is running as service. + /// </summary> + /// <value><c>true</c> if this instance is running as service; otherwise, <c>false</c>.</value> + public bool IsRunningAsService { get; set; } + /// <summary> /// Gets or sets the mac address. /// </summary> |
