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

71 lines
2.0 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
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 release for a library item, eg. Director's cut vs. standard.
/// </summary>
public class Release : IHasConcurrencyToken
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Release"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="name">The name of this release.</param>
public Release(string name)
2020-05-02 17:56:05 -04:00
{
2020-06-20 04:35:29 -04:00
if (string.IsNullOrEmpty(name))
{
throw new ArgumentNullException(nameof(name));
}
Name = name;
2020-05-02 17:56:05 -04:00
MediaFiles = new HashSet<MediaFile>();
Chapters = new HashSet<Chapter>();
2020-05-02 17:56:05 -04:00
}
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets 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)]
2021-03-17 19:08:11 -04:00
public int Id { get; private set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the name.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Required, Max length = 1024.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(1024)]
[StringLength(1024)]
public string Name { get; set; }
2020-06-15 17:43:52 -04:00
/// <inheritdoc />
[ConcurrencyCheck]
2021-03-17 19:08:11 -04:00
public uint RowVersion { get; private set; }
2020-05-02 17:56:05 -04:00
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets a collection containing the media files for this release.
2020-05-02 17:56:05 -04:00
/// </summary>
2021-03-17 19:08:11 -04:00
public virtual ICollection<MediaFile> MediaFiles { get; private set; }
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets a collection containing the chapters for this release.
/// </summary>
2021-03-17 19:08:11 -04:00
public virtual ICollection<Chapter> Chapters { get; private set; }
2020-05-02 17:56:05 -04:00
/// <inheritdoc />
2020-05-02 17:56:05 -04:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}