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

96 lines
2.5 KiB
C#
Raw Normal View History

2020-09-01 17:36:45 +02:00
#pragma warning disable CA2227
using System;
using System.Collections.Generic;
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 person.
/// </summary>
public class Person : IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Person"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="name">The name of the person.</param>
public Person(string name)
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;
DateAdded = DateTime.UtcNow;
DateModified = DateAdded;
Sources = new HashSet<MetadataProviderId>();
2020-05-02 23:56:05 +02:00
}
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>
/// Required, Max length = 1024.
/// </remarks>
2020-05-02 23:56:05 +02:00
[Required]
[MaxLength(1024)]
[StringLength(1024)]
public string Name { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the source id.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Max length = 255.
/// </remarks>
[MaxLength(256)]
[StringLength(256)]
public string SourceId { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the date added.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public DateTime DateAdded { get; protected set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the date modified.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public DateTime DateModified { get; set; }
2020-06-15 23:43:52 +02:00
/// <inheritdoc />
[ConcurrencyCheck]
public uint RowVersion { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets a list of metadata sources for this person.
2020-05-02 23:56:05 +02:00
/// </summary>
public virtual ICollection<MetadataProviderId> Sources { get; protected set; }
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}