aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/Libraries/CustomItemMetadata.cs
blob: af2393870f73a325063c671700ca1cda37760725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
        {
        }
    }
}