jellyfin/MediaBrowser.Model/Configuration/UserConfiguration.cs

79 lines
2.4 KiB
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
2020-05-12 22:10:35 -04:00
using Jellyfin.Data.Enums;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Configuration
{
/// <summary>
/// Class UserConfiguration.
2018-12-27 18:27:57 -05:00
/// </summary>
public class UserConfiguration
{
/// <summary>
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
/// </summary>
public UserConfiguration()
{
EnableNextEpisodeAutoPlay = true;
RememberAudioSelections = true;
RememberSubtitleSelections = true;
HidePlayedInLatest = true;
PlayDefaultAudioTrack = true;
LatestItemsExcludes = Array.Empty<Guid>();
OrderedViews = Array.Empty<Guid>();
MyMediaExcludes = Array.Empty<Guid>();
GroupedFolders = Array.Empty<Guid>();
}
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the audio language preference.
/// </summary>
/// <value>The audio language preference.</value>
2021-10-26 07:56:30 -04:00
public string? AudioLanguagePreference { get; set; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets a value indicating whether [play default audio track].
/// </summary>
/// <value><c>true</c> if [play default audio track]; otherwise, <c>false</c>.</value>
public bool PlayDefaultAudioTrack { get; set; }
/// <summary>
/// Gets or sets the subtitle language preference.
/// </summary>
/// <value>The subtitle language preference.</value>
2021-10-26 07:56:30 -04:00
public string? SubtitleLanguagePreference { get; set; }
2018-12-27 18:27:57 -05:00
public bool DisplayMissingEpisodes { get; set; }
public Guid[] GroupedFolders { get; set; }
2018-12-27 18:27:57 -05:00
public SubtitlePlaybackMode SubtitleMode { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool DisplayCollectionsView { get; set; }
public bool EnableLocalPassword { get; set; }
public Guid[] OrderedViews { get; set; }
2018-12-27 18:27:57 -05:00
public Guid[] LatestItemsExcludes { get; set; }
2020-06-15 17:43:52 -04:00
public Guid[] MyMediaExcludes { get; set; }
2018-12-27 18:27:57 -05:00
public bool HidePlayedInLatest { get; set; }
public bool RememberAudioSelections { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool RememberSubtitleSelections { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableNextEpisodeAutoPlay { get; set; }
/// <summary>
/// Gets or sets the id of the selected cast receiver.
/// </summary>
public string? CastReceiverId { get; set; }
2018-12-27 18:27:57 -05:00
}
}