using System.Collections.Generic; namespace Jellyfin.Data.Entities.Libraries { /// /// An entity representing a music album. /// public class MusicAlbum : LibraryItem { /// /// Initializes a new instance of the class. /// public MusicAlbum() { MusicAlbumMetadata = new HashSet(); Tracks = new HashSet(); } /// /// Gets or sets a collection containing the album metadata. /// public virtual ICollection MusicAlbumMetadata { get; protected set; } /// /// Gets or sets a collection containing the tracks. /// public virtual ICollection Tracks { get; protected set; } } }