mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
d8ea0a3243
This fixes and implements many items on the ArtistIndex Page and ArtistDetailPage * Create ArtistStatistics Core Module and tie into API. * Create Members Class and tie into ArtistModel and Artist API resource. * Finish Out Album API resources and pass to ArtistDetailPage. * Finish Out Track and TrackFile API resources and pass to ArtistDetailPage. * Lots of UI work on Artist Detail Page to get Albums and Track list working. * Add Cover and Disc Image Types to MediaCover Class * Remove AddSeries UI Flow, since we have replaced with AddArtist (Cleanup)
18 lines
412 B
C#
18 lines
412 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Music
|
|
{
|
|
public class Member : IEmbeddedDocument
|
|
{
|
|
public Member()
|
|
{
|
|
Images = new List<MediaCover.MediaCover>();
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public string Instrument { get; set; }
|
|
public List<MediaCover.MediaCover> Images { get; set; }
|
|
}
|
|
}
|