mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
447 B
15 lines
447 B
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; } |
|
} |
|
}
|
|
|