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

64 lines
1.7 KiB
C#
Raw Normal View History

using System;
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 library item.
/// </summary>
public abstract class LibraryItem : IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="LibraryItem"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="library">The library of this item.</param>
protected LibraryItem(Library library)
2020-05-02 23:56:05 +02:00
{
DateAdded = DateTime.UtcNow;
Library = library;
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Initializes a new instance of the <see cref="LibraryItem"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
protected LibraryItem()
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; protected set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the date this library item was added.
2020-05-02 23:56:05 +02:00
/// </summary>
public DateTime DateAdded { get; protected set; }
2020-06-15 23:43:52 +02:00
/// <inheritdoc />
[ConcurrencyCheck]
public uint RowVersion { get; protected set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the library of this item.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-05-02 23:56:05 +02:00
[Required]
public virtual Library Library { get; set; }
2020-05-02 23:56:05 +02:00
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}