2020-04-05 09:10:56 -07:00
|
|
|
#nullable disable
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2020-05-12 19:10:35 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// Class UserConfiguration.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public class UserConfiguration
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the audio language preference.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The audio language preference.</value>
|
|
|
|
public string AudioLanguagePreference { get; set; }
|
|
|
|
|
|
|
|
/// <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>
|
|
|
|
public string SubtitleLanguagePreference { get; set; }
|
|
|
|
|
|
|
|
public bool DisplayMissingEpisodes { get; set; }
|
|
|
|
|
|
|
|
public string[] GroupedFolders { get; set; }
|
|
|
|
|
|
|
|
public SubtitlePlaybackMode SubtitleMode { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool DisplayCollectionsView { get; set; }
|
|
|
|
|
|
|
|
public bool EnableLocalPassword { get; set; }
|
|
|
|
|
|
|
|
public string[] OrderedViews { get; set; }
|
|
|
|
|
|
|
|
public string[] LatestItemsExcludes { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string[] MyMediaExcludes { get; set; }
|
|
|
|
|
|
|
|
public bool HidePlayedInLatest { get; set; }
|
|
|
|
|
|
|
|
public bool RememberAudioSelections { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool RememberSubtitleSelections { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool EnableNextEpisodeAutoPlay { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
|
|
|
|
/// </summary>
|
|
|
|
public UserConfiguration()
|
|
|
|
{
|
|
|
|
EnableNextEpisodeAutoPlay = true;
|
|
|
|
RememberAudioSelections = true;
|
|
|
|
RememberSubtitleSelections = true;
|
|
|
|
|
|
|
|
HidePlayedInLatest = true;
|
|
|
|
PlayDefaultAudioTrack = true;
|
|
|
|
|
2018-12-27 14:43:48 -07:00
|
|
|
LatestItemsExcludes = Array.Empty<string>();
|
|
|
|
OrderedViews = Array.Empty<string>();
|
|
|
|
MyMediaExcludes = Array.Empty<string>();
|
|
|
|
GroupedFolders = Array.Empty<string>();
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|