using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities
{
public partial class MusicAlbum : LibraryItem
{
partial void Init();
///
/// Default constructor. Protected due to required properties, but present because EF needs it.
///
protected MusicAlbum()
{
MusicAlbumMetadata = new HashSet();
Tracks = new HashSet