jellyfin/Jellyfin.Data/Entities/DisplayPreferences.cs

151 lines
4.3 KiB
C#
Raw Normal View History

2021-03-17 19:08:11 -04:00
using System;
2020-06-30 21:44:41 -04:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Enums;
namespace Jellyfin.Data.Entities
{
2020-07-09 22:00:34 -04:00
/// <summary>
/// An entity representing a user's display preferences.
/// </summary>
2020-06-30 21:44:41 -04:00
public class DisplayPreferences
{
2020-07-09 22:00:34 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="DisplayPreferences"/> class.
/// </summary>
/// <param name="userId">The user's id.</param>
2020-12-04 18:00:11 -05:00
/// <param name="itemId">The item id.</param>
/// <param name="client">The client string.</param>
2020-12-04 18:00:11 -05:00
public DisplayPreferences(Guid userId, Guid itemId, string client)
2020-06-30 21:44:41 -04:00
{
UserId = userId;
2020-12-04 18:00:11 -05:00
ItemId = itemId;
Client = client;
ShowSidebar = false;
ShowBackdrop = true;
SkipForwardLength = 30000;
SkipBackwardLength = 10000;
ScrollDirection = ScrollDirection.Horizontal;
ChromecastVersion = ChromecastVersion.Stable;
2020-06-30 21:44:41 -04:00
HomeSections = new HashSet<HomeSection>();
}
2020-07-09 22:00:34 -04:00
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets the Id.
2020-07-09 22:00:34 -04:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-06-30 21:44:41 -04:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2021-03-17 19:08:11 -04:00
public int Id { get; private set; }
2020-06-30 21:44:41 -04:00
2020-07-09 22:00:34 -04:00
/// <summary>
/// Gets or sets the user Id.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-06-30 21:44:41 -04:00
public Guid UserId { get; set; }
2020-12-04 18:00:11 -05:00
/// <summary>
/// Gets or sets the id of the associated item.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public Guid ItemId { get; set; }
2020-07-09 22:00:34 -04:00
/// <summary>
/// Gets or sets the client string.
/// </summary>
/// <remarks>
/// Required. Max Length = 32.
2020-07-09 22:00:34 -04:00
/// </remarks>
[MaxLength(32)]
[StringLength(32)]
2020-06-30 21:44:41 -04:00
public string Client { get; set; }
2020-07-09 22:00:34 -04:00
/// <summary>
/// Gets or sets a value indicating whether to show the sidebar.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-06-30 21:44:41 -04:00
public bool ShowSidebar { get; set; }
2020-07-09 22:00:34 -04:00
/// <summary>
/// Gets or sets a value indicating whether to show the backdrop.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-06-30 21:44:41 -04:00
public bool ShowBackdrop { get; set; }
2020-07-09 22:00:34 -04:00
/// <summary>
/// Gets or sets the scroll direction.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-06-30 21:44:41 -04:00
public ScrollDirection ScrollDirection { get; set; }
2020-07-09 22:00:34 -04:00
/// <summary>
/// Gets or sets what the view should be indexed by.
/// </summary>
2020-06-30 21:44:41 -04:00
public IndexingKind? IndexBy { get; set; }
2020-07-17 19:36:55 -04:00
/// <summary>
/// Gets or sets the length of time to skip forwards, in milliseconds.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public int SkipForwardLength { get; set; }
/// <summary>
/// Gets or sets the length of time to skip backwards, in milliseconds.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public int SkipBackwardLength { get; set; }
/// <summary>
/// Gets or sets the Chromecast Version.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public ChromecastVersion ChromecastVersion { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the next video info overlay should be shown.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public bool EnableNextVideoInfoOverlay { get; set; }
2020-07-27 20:44:46 -04:00
/// <summary>
/// Gets or sets the dashboard theme.
/// </summary>
[MaxLength(32)]
[StringLength(32)]
public string? DashboardTheme { get; set; }
2020-07-27 20:44:46 -04:00
2020-07-27 20:50:58 -04:00
/// <summary>
/// Gets or sets the tv home screen.
/// </summary>
[MaxLength(32)]
[StringLength(32)]
public string? TvHome { get; set; }
2020-07-27 20:50:58 -04:00
2020-07-09 22:00:34 -04:00
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets the home sections.
2020-07-09 22:00:34 -04:00
/// </summary>
2021-03-17 19:08:11 -04:00
public virtual ICollection<HomeSection> HomeSections { get; private set; }
2020-06-30 21:44:41 -04:00
}
}