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

37 lines
1.1 KiB
C#
Raw Normal View History

using System;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity holding metadata for a track.
/// </summary>
2020-09-01 17:38:09 +02:00
public class TrackMetadata : ItemMetadata
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="TrackMetadata"/> 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="track">The track.</param>
public TrackMetadata(string title, string language, Track track) : base(title, language)
2020-05-02 23:56:05 +02:00
{
if (track == null)
2020-06-20 10:35:29 +02:00
{
throw new ArgumentNullException(nameof(track));
2020-06-20 10:35:29 +02:00
}
track.TrackMetadata.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="TrackMetadata"/> 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 TrackMetadata()
2020-05-02 23:56:05 +02:00
{
}
}
}