jellyfin/Jellyfin.Data/Entities/HomeSection.cs

45 lines
1.1 KiB
C#
Raw Normal View History

2021-03-18 00:08:11 +01:00
using System.ComponentModel.DataAnnotations.Schema;
2020-07-01 03:44:41 +02:00
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>
2021-03-18 00:08:11 +01:00
/// Gets the id.
2020-07-10 04:28:59 +02:00
/// </summary>
/// <remarks>
/// Identity. Required.
/// </remarks>
2020-07-01 03:44:41 +02:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2021-03-18 00:08:11 +01:00
public int Id { get; private set; }
2020-07-01 03:44:41 +02:00
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; }
}
}