using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Jellyfin.Data.Interfaces; namespace Jellyfin.Data.Entities.Libraries { /// /// An entity representing a release for a library item, eg. Director's cut vs. standard. /// public class Release : IHasConcurrencyToken { /// /// Initializes a new instance of the class. /// /// The name of this release. public Release(string name) { ArgumentException.ThrowIfNullOrEmpty(name); Name = name; MediaFiles = new HashSet(); Chapters = new HashSet(); } /// /// Gets the id. /// /// /// Identity, Indexed, Required. /// [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; private set; } /// /// Gets or sets the name. /// /// /// Required, Max length = 1024. /// [MaxLength(1024)] [StringLength(1024)] public string Name { get; set; } /// [ConcurrencyCheck] public uint RowVersion { get; private set; } /// /// Gets a collection containing the media files for this release. /// public virtual ICollection MediaFiles { get; private set; } /// /// Gets a collection containing the chapters for this release. /// public virtual ICollection Chapters { get; private set; } /// public void OnSavingChanges() { RowVersion++; } } }