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

76 lines
2 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 genre.
/// </summary>
public class Genre : IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Genre"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="name">The name.</param>
2020-09-01 17:38:09 +02:00
/// <param name="itemMetadata">The metadata.</param>
public Genre(string name, ItemMetadata itemMetadata)
2020-05-02 23:56:05 +02:00
{
2020-06-20 10:35:29 +02:00
if (string.IsNullOrEmpty(name))
{
throw new ArgumentNullException(nameof(name));
}
Name = name;
2020-05-02 23:56:05 +02:00
2020-09-01 17:38:09 +02:00
if (itemMetadata == null)
2020-06-20 10:35:29 +02:00
{
2020-09-01 17:38:09 +02:00
throw new ArgumentNullException(nameof(itemMetadata));
2020-06-20 10:35:29 +02:00
}
2020-05-02 23:56:05 +02:00
2020-09-01 17:38:09 +02:00
itemMetadata.Genres.Add(this);
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Initializes a new instance of the <see cref="Genre"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Default constructor. Protected due to required properties, but present because EF needs it.
/// </remarks>
protected Genre()
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 name.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Indexed, Required, Max length = 255.
/// </remarks>
2020-05-02 23:56:05 +02:00
[Required]
[MaxLength(255)]
[StringLength(255)]
public string Name { get; set; }
2020-06-15 23:43:52 +02:00
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
[ConcurrencyCheck]
public uint RowVersion { get; protected set; }
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}