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

66 lines
1.8 KiB
C#
Raw Normal View History

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Interfaces;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a unique identifier for a metadata provider.
/// </summary>
public class MetadataProviderId : IHasConcurrencyToken
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="MetadataProviderId"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="providerId">The provider id.</param>
public MetadataProviderId(string providerId)
2020-05-02 17:56:05 -04:00
{
if (string.IsNullOrEmpty(providerId))
2020-06-20 04:35:29 -04:00
{
throw new ArgumentNullException(nameof(providerId));
2020-06-20 04:35:29 -04:00
}
ProviderId = providerId;
2020-05-02 17:56:05 -04:00
}
/// <summary>
/// Gets or sets the id.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Identity, Indexed, Required.
/// </remarks>
2020-05-02 17:56:05 -04:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; protected set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the provider id.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Required, Max length = 255.
/// </remarks>
2020-05-02 17:56:05 -04:00
[Required]
[MaxLength(255)]
[StringLength(255)]
public string ProviderId { get; set; }
2020-06-15 17:43:52 -04:00
/// <inheritdoc />
[ConcurrencyCheck]
public uint RowVersion { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the metadata provider.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public virtual MetadataProvider MetadataProvider { get; set; }
2020-05-02 17:56:05 -04:00
/// <inheritdoc />
2020-05-02 17:56:05 -04:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}