namespace Jellyfin.Data.Entities.Libraries
{
///
/// An entity holding metadata for a track.
///
public class TrackMetadata : ItemMetadata
{
///
/// Initializes a new instance of the class.
///
/// The title or name of the object.
/// ISO-639-3 3-character language codes.
public TrackMetadata(string title, string language) : base(title, language)
{
}
}
}