jellyfin/Jellyfin.Data/Entities/Libraries/CollectionItem.cs

56 lines
1.6 KiB
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Interfaces;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a collection item.
/// </summary>
public class CollectionItem : IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Gets or sets the id.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Identity, Indexed, Required.
/// </remarks>
2020-05-02 23:56:05 +02:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
2020-05-02 23:56:05 +02:00
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
[ConcurrencyCheck]
public uint RowVersion { get; set; }
/// <summary>
/// Gets or sets the library item.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-05-02 23:56:05 +02:00
public virtual LibraryItem LibraryItem { get; set; }
/// <summary>
/// Gets or sets the next item in the collection.
/// </summary>
2020-05-02 23:56:05 +02:00
/// <remarks>
2020-11-18 14:46:14 +01:00
/// TODO check if this properly updated Dependant and has the proper principal relationship.
2020-05-02 23:56:05 +02:00
/// </remarks>
public virtual CollectionItem Next { get; set; }
/// <summary>
/// Gets or sets the previous item in the collection.
/// </summary>
2020-05-02 23:56:05 +02:00
/// <remarks>
2020-11-18 14:46:14 +01:00
/// TODO check if this properly updated Dependant and has the proper principal relationship.
2020-05-02 23:56:05 +02:00
/// </remarks>
public virtual CollectionItem Previous { get; set; }
/// <inheritdoc />
public void OnSavingChanges()
{
RowVersion++;
}
2020-05-02 23:56:05 +02:00
}
}