mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
removed unused attributes
This commit is contained in:
@@ -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.
|
||||
/// </summary>
|
||||
[ProtoContract, ProtoInclude(965, typeof(ServerConfiguration))]
|
||||
public class BaseApplicationConfiguration
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [enable debug level logging].
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [enable debug level logging]; otherwise, <c>false</c>.</value>
|
||||
[ProtoMember(1)]
|
||||
public bool EnableDebugLevelLogging { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Enable automatically and silently updating of the application
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [enable auto update]; otherwise, <c>false</c>.</value>
|
||||
[ProtoMember(3)]
|
||||
public bool EnableAutoUpdate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets of sets a value indicating the level of system updates (Release, Beta, Dev)
|
||||
/// </summary>
|
||||
[ProtoMember(60)]
|
||||
public PackageVersionClass SystemUpdateLevel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The number of days we should retain log files
|
||||
/// </summary>
|
||||
/// <value>The log file retention days.</value>
|
||||
[ProtoMember(5)]
|
||||
public int LogFileRetentionDays { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [run at startup].
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [run at startup]; otherwise, <c>false</c>.</value>
|
||||
[ProtoMember(58)]
|
||||
public bool RunAtStartup { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance is first run.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is first run; otherwise, <c>false</c>.</value>
|
||||
[ProtoMember(4)]
|
||||
public bool IsStartupWizardCompleted { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user