From 32bc545a854480f11bbb7dbaa4f5205f11acc7d6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 18 Apr 2013 15:57:28 -0400 Subject: removed unused attributes --- MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs b/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs index 9fc8d824f..a8ee09be1 100644 --- a/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs +++ b/MediaBrowser.Model/Configuration/BaseApplicationConfiguration.cs @@ -1,5 +1,4 @@ using MediaBrowser.Model.Updates; -using ProtoBuf; namespace MediaBrowser.Model.Configuration { @@ -8,48 +7,41 @@ namespace MediaBrowser.Model.Configuration /// ProtoInclude tells Protobuf about subclasses, /// The number 50 can be any number, so long as it doesn't clash with any of the ProtoMember numbers either here or in subclasses. /// - [ProtoContract, ProtoInclude(965, typeof(ServerConfiguration))] public class BaseApplicationConfiguration { /// /// Gets or sets a value indicating whether [enable debug level logging]. /// /// true if [enable debug level logging]; otherwise, false. - [ProtoMember(1)] public bool EnableDebugLevelLogging { get; set; } /// /// Enable automatically and silently updating of the application /// /// true if [enable auto update]; otherwise, false. - [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 /// /// The log file retention days. - [ProtoMember(5)] public int LogFileRetentionDays { get; set; } /// /// Gets or sets a value indicating whether [run at startup]. /// /// true if [run at startup]; otherwise, false. - [ProtoMember(58)] public bool RunAtStartup { get; set; } /// /// Gets or sets a value indicating whether this instance is first run. /// /// true if this instance is first run; otherwise, false. - [ProtoMember(4)] public bool IsStartupWizardCompleted { get; set; } /// -- cgit v1.2.3