using System.Collections.Generic; namespace ErsatzTV.Core.Domain { public class Artist : MediaItem { public List MusicVideos { get; set; } public List ArtistMetadata { get; set; } } }