diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-20 13:32:10 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-20 13:32:10 -0400 |
| commit | f3ce127a62714c97747f1e9575aaea1e9cdb3b6a (patch) | |
| tree | d138a473d31b69e8ba59020b0dc1da3c51c2833e /MediaBrowser.Model/System | |
| parent | e50c29ffca5c4a5865d8b0bf34c2f655387f1d3e (diff) | |
starting point towards running as a service
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 f77856c6e4..b00d7f29d3 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -81,7 +81,13 @@ namespace MediaBrowser.Model.System public int HttpServerPortNumber { get; set; } /// <summary> - /// Initializes a new instance of the <see cref="SystemInfo"/> class. + /// Gets or sets a value indicating whether this instance is background service. + /// </summary> + /// <value><c>true</c> if this instance is background service; otherwise, <c>false</c>.</value> + public bool IsBackgroundService { get; set; } + + /// <summary> + /// Initializes a new instance of the <see cref="SystemInfo" /> class. /// </summary> public SystemInfo() { |
