using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Jellyfin.Data.Interfaces; namespace Jellyfin.Data.Entities.Libraries { /// /// An entity representing a library. /// public class Library : IHasConcurrencyToken { /// /// Initializes a new instance of the class. /// /// The name of the library. public Library(string name) { if (string.IsNullOrWhiteSpace(name)) { throw new ArgumentNullException(nameof(name)); } Name = name; } /// /// Initializes a new instance of the class. /// /// /// Default constructor. Protected due to required properties, but present because EF needs it. /// protected Library() { } /// /// Gets or sets the id. /// /// /// Identity, Indexed, Required. /// [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; protected set; } /// /// Gets or sets the name. /// /// /// Required, Max length = 128. /// [Required] [MaxLength(128)] [StringLength(128)] public string Name { get; set; } /// /// Gets or sets the root path of the library. /// /// /// Required. /// [Required] public string Path { get; set; } /// [ConcurrencyCheck] public uint RowVersion { get; set; } /// public void OnSavingChanges() { RowVersion++; } } }