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

18 lines
574 B
C#
Raw Normal View History

2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity holding metadata for a track.
/// </summary>
2020-09-01 11:38:09 -04:00
public class TrackMetadata : ItemMetadata
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="TrackMetadata"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
2020-06-19 06:21:49 -04:00
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
public TrackMetadata(string title, string language) : base(title, language)
2020-05-02 17:56:05 -04:00
{
}
}
}