jellyfin/Jellyfin.Data/Entities/HomeSection.cs

47 lines
1.2 KiB
C#
Raw Normal View History

2020-07-10 04:28:59 +02:00
using System.ComponentModel.DataAnnotations;
2020-07-01 03:44:41 +02:00
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Enums;
namespace Jellyfin.Data.Entities
{
2020-07-10 04:28:59 +02:00
/// <summary>
/// An entity representing a section on the user's home page.
/// </summary>
2020-07-01 03:44:41 +02:00
public class HomeSection
{
2020-07-10 04:28:59 +02:00
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <remarks>
/// Identity. Required.
/// </remarks>
2020-07-01 03:44:41 +02:00
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; protected set; }
2020-07-10 04:28:59 +02:00
/// <summary>
/// Gets or sets the Id of the associated display preferences.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-07-01 03:44:41 +02:00
public int DisplayPreferencesId { get; set; }
2020-07-10 04:28:59 +02:00
/// <summary>
/// Gets or sets the order.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-07-01 03:44:41 +02:00
public int Order { get; set; }
2020-07-10 04:28:59 +02:00
/// <summary>
/// Gets or sets the type.
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-07-01 03:44:41 +02:00
public HomeSectionType Type { get; set; }
}
}