diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-07 12:22:19 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-07 12:22:19 -0400 |
| commit | 4a030a70a95a51af22f8915801f28614d638714e (patch) | |
| tree | 18451543f49dd642211fa604404d55dac76e7a1f /MediaBrowser.Model/System | |
| parent | 65f78ea5ad19620d73eba54ac289fb78ef70af2b (diff) | |
remove self update capability from 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 d736298b8f..9491139dbc 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -67,7 +67,13 @@ namespace MediaBrowser.Model.System /// </summary> /// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value> public bool CanSelfRestart { get; set; } - + + /// <summary> + /// Gets or sets a value indicating whether this instance can self update. + /// </summary> + /// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value> + public bool CanSelfUpdate { get; set; } + /// <summary> /// Gets or sets plugin assemblies that failed to load. /// </summary> |
