mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
acb213e4b8
- Documents all library entities - Fixes styling warnings for library entities - Updates library entities to inherit from interfaces - Makes library entites no longer partial.
30 lines
894 B
C#
30 lines
894 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
|
{
|
|
/// <summary>
|
|
/// An entity representing a music album.
|
|
/// </summary>
|
|
public class MusicAlbum : LibraryItem
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MusicAlbum"/> class.
|
|
/// </summary>
|
|
public MusicAlbum()
|
|
{
|
|
MusicAlbumMetadata = new HashSet<MusicAlbumMetadata>();
|
|
Tracks = new HashSet<Track>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets a collection containing the album metadata.
|
|
/// </summary>
|
|
public virtual ICollection<MusicAlbumMetadata> MusicAlbumMetadata { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a collection containing the tracks.
|
|
/// </summary>
|
|
public virtual ICollection<Track> Tracks { get; protected set; }
|
|
}
|
|
}
|