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

37 lines
1.2 KiB
C#
Raw Normal View History

using System;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity containing metadata for a custom item.
/// </summary>
2020-09-01 17:38:09 +02:00
public class CustomItemMetadata : ItemMetadata
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="CustomItemMetadata"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
2020-06-19 12:21:49 +02:00
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
/// <param name="item">The item.</param>
public CustomItemMetadata(string title, string language, CustomItem item) : base(title, language)
2020-05-02 23:56:05 +02:00
{
if (item == null)
2020-06-20 10:35:29 +02:00
{
throw new ArgumentNullException(nameof(item));
2020-06-20 10:35:29 +02:00
}
item.CustomItemMetadata.Add(this);
2020-05-02 23:56:05 +02:00
}
2020-05-02 23:56:05 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="CustomItemMetadata"/> 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 CustomItemMetadata()
2020-05-02 23:56:05 +02:00
{
}
}
}