You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
598 B
18 lines
598 B
namespace Jellyfin.Data.Entities.Libraries
|
|
{
|
|
/// <summary>
|
|
/// An entity containing metadata for a custom item.
|
|
/// </summary>
|
|
public class CustomItemMetadata : ItemMetadata
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CustomItemMetadata"/> class.
|
|
/// </summary>
|
|
/// <param name="title">The title or name of the object.</param>
|
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
|
public CustomItemMetadata(string title, string language) : base(title, language)
|
|
{
|
|
}
|
|
}
|
|
}
|