mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			151 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.ComponentModel.DataAnnotations;
 | |
| using System.ComponentModel.DataAnnotations.Schema;
 | |
| using Jellyfin.Data.Enums;
 | |
| 
 | |
| namespace Jellyfin.Data.Entities
 | |
| {
 | |
|     /// <summary>
 | |
|     /// An entity representing a user's display preferences.
 | |
|     /// </summary>
 | |
|     public class DisplayPreferences
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Initializes a new instance of the <see cref="DisplayPreferences"/> class.
 | |
|         /// </summary>
 | |
|         /// <param name="userId">The user's id.</param>
 | |
|         /// <param name="client">The client string.</param>
 | |
|         public DisplayPreferences(Guid userId, string client)
 | |
|         {
 | |
|             UserId = userId;
 | |
|             Client = client;
 | |
|             ShowSidebar = false;
 | |
|             ShowBackdrop = true;
 | |
|             SkipForwardLength = 30000;
 | |
|             SkipBackwardLength = 10000;
 | |
|             ScrollDirection = ScrollDirection.Horizontal;
 | |
|             ChromecastVersion = ChromecastVersion.Stable;
 | |
|             DashboardTheme = string.Empty;
 | |
|             TvHome = string.Empty;
 | |
| 
 | |
|             HomeSections = new HashSet<HomeSection>();
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Initializes a new instance of the <see cref="DisplayPreferences"/> class.
 | |
|         /// </summary>
 | |
|         protected DisplayPreferences()
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the Id.
 | |
|         /// </summary>
 | |
|         /// <remarks>
 | |
|         /// Required.
 | |
|         /// </remarks>
 | |
|         [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
 | |
|         public int Id { get; protected set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the user Id.
 | |
|         /// </summary>
 | |
|         /// <remarks>
 | |
|         /// Required.
 | |
|         /// </remarks>
 | |
|         public Guid UserId { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the client string.
 | |
|         /// </summary>
 | |
|         /// <remarks>
 | |
|         /// Required. Max Length = 32.
 | |
|         /// </remarks>
 | |
|         [Required]
 | |
|         [MaxLength(32)]
 | |
|         [StringLength(32)]
 | |
|         public string Client { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets a value indicating whether to show the sidebar.
 | |
|         /// </summary>
 | |
|         /// <remarks>
 | |
|         /// Required.
 | |
|         /// </remarks>
 | |
|         public bool ShowSidebar { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets a value indicating whether to show the backdrop.
 | |
|         /// </summary>
 | |
|         /// <remarks>
 | |
|         /// Required.
 | |
|         /// </remarks>
 | |
|         public bool ShowBackdrop { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the scroll direction.
 | |
|         /// </summary>
 | |
|         /// <remarks>
 | |
|         /// Required.
 | |
|         /// </remarks>
 | |
|         public ScrollDirection ScrollDirection { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets what the view should be indexed by.
 | |
|         /// </summary>
 | |
|         public IndexingKind? IndexBy { get; set; }
 | |
| 
 | |
|         /// <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; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the dashboard theme.
 | |
|         /// </summary>
 | |
|         [MaxLength(32)]
 | |
|         [StringLength(32)]
 | |
|         public string DashboardTheme { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the tv home screen.
 | |
|         /// </summary>
 | |
|         [MaxLength(32)]
 | |
|         [StringLength(32)]
 | |
|         public string TvHome { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the home sections.
 | |
|         /// </summary>
 | |
|         public virtual ICollection<HomeSection> HomeSections { get; protected set; }
 | |
|     }
 | |
| }
 |