* clean up genre, tag, studio orphans * enforce foreign keys at connection level * wip * fix fragment scroll offset * fix see all link for music videos * add fake artist metadata * not null artist id * add artist scanning * remove improperly named music videos * code cleanup * add artists to search results and collections * clean up music video metadata / artist * add artist view * show music videos on artist page * add music video artwork placeholder
16 lines
447 B
C#
16 lines
447 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class ArtistMetadata : Metadata
|
|
{
|
|
public string Disambiguation { get; set; }
|
|
public string Biography { get; set; }
|
|
public string Formed { get; set; }
|
|
public int ArtistId { get; set; }
|
|
public Artist Artist { get; set; }
|
|
public List<Style> Styles { get; set; }
|
|
public List<Mood> Moods { get; set; }
|
|
}
|
|
}
|