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

53 lines
1.5 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Jellyfin.Data.Interfaces;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a track.
/// </summary>
public class Track : LibraryItem, IHasReleases
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Track"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="album">The album.</param>
public Track(MusicAlbum album)
2020-05-02 23:56:05 +02:00
{
if (album == null)
2020-06-20 10:35:29 +02:00
{
throw new ArgumentNullException(nameof(album));
2020-06-20 10:35:29 +02:00
}
album.Tracks.Add(this);
2020-05-02 23:56:05 +02:00
Releases = new HashSet<Release>();
TrackMetadata = new HashSet<TrackMetadata>();
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Initializes a new instance of the <see cref="Track"/> 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 Track()
2020-05-02 23:56:05 +02:00
{
}
/// <summary>
/// Gets or sets the track number.
2020-05-02 23:56:05 +02:00
/// </summary>
public int? TrackNumber { get; set; }
2020-05-02 23:56:05 +02:00
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public virtual ICollection<Release> Releases { get; protected set; }
/// <summary>
/// Gets or sets a collection containing the track metadata.
/// </summary>
2020-05-02 23:56:05 +02:00
public virtual ICollection<TrackMetadata> TrackMetadata { get; protected set; }
}
}