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

65 lines
1.9 KiB
C#
Raw Normal View History

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