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

81 lines
2.3 KiB
C#
Raw Normal View History

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Enums;
using Jellyfin.Data.Interfaces;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a person's role in media.
/// </summary>
public class PersonRole : IHasArtwork, IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="PersonRole"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="type">The role type.</param>
/// <param name="person">The person.</param>
public PersonRole(PersonRoleType type, Person person)
2020-05-02 23:56:05 +02:00
{
Type = type;
Person = person;
Artwork = new HashSet<Artwork>();
Sources = new HashSet<MetadataProviderId>();
2020-05-02 23:56:05 +02:00
}
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets 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)]
2021-03-18 00:08:11 +01:00
public int Id { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the name of the person's role.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Max length = 1024.
/// </remarks>
2020-05-02 23:56:05 +02:00
[MaxLength(1024)]
[StringLength(1024)]
public string? Role { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the person's role type.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public PersonRoleType Type { get; set; }
/// <inheritdoc />
[ConcurrencyCheck]
2021-03-18 00:08:11 +01:00
public uint RowVersion { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the person.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public virtual Person Person { get; set; }
2020-06-15 23:43:52 +02:00
/// <inheritdoc />
2021-03-18 00:08:11 +01:00
public virtual ICollection<Artwork> Artwork { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets a collection containing the metadata sources for this person role.
2020-05-02 23:56:05 +02:00
/// </summary>
2021-03-18 00:08:11 +01:00
public virtual ICollection<MetadataProviderId> Sources { get; private set; }
2020-05-02 23:56:05 +02:00
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}