using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NzbDrone.Core.MetadataSource.SkyHook.Resource { public class AlbumResource { public string ArtistId { get; set; } public List Artists { get; set; } public string Disambiguation { get; set; } public string Overview { get; set; } public string Id { get; set; } public List Images { get; set; } public List Links { get; set; } public RatingResource Rating { get; set; } public DateTime? ReleaseDate { get; set; } public List Releases { get; set; } public List SecondaryTypes { get; set; } public string Title { get; set; } public string Type { get; set; } } }