diff --git a/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs b/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs index 61b177df97..474d985f2f 100644 --- a/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs +++ b/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs @@ -1,4 +1,5 @@ -using ProtoBuf; +using MediaBrowser.Model.Updates; +using ProtoBuf; namespace MediaBrowser.Model.Configuration { @@ -38,6 +39,12 @@ namespace MediaBrowser.Model.Configuration [ProtoMember(3)] public bool EnableAutoUpdate { get; set; } + /// + /// Gets of sets a value indicating the level of system updates (Release, Beta, Dev) + /// + [ProtoMember(60)] + public PackageVersionClass SystemUpdateLevel { get; set; } + /// /// The number of days we should retain log files /// diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 0922e0d158..71f368397b 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -300,13 +300,7 @@ namespace MediaBrowser.Model.Configuration [ProtoMember(57)] public bool EnableDeveloperTools { get; set; } - /// - /// Gets of sets a value indicating the level of system updates (Release, Beta, Dev) - /// - [ProtoMember(59)] - public PackageVersionClass SystemUpdateLevel { get; set; } - - // Next Proto number ====> 60 + // Next Proto number ====> 61 /// /// Initializes a new instance of the class.