using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NzbDrone.Core.MetadataSource.SkyHook.Resource { public class AlbumResource { public AlbumResource() { Media = new List(); } public List Artists { get; set; } // Will always be length of 1 unless a compilation public string Url { get; set; } // Link to the endpoint api to give full info for this object public string Id { get; set; } // This is a unique Album ID. Needed for all future API calls public DateTime ReleaseDate { get; set; } public List Images { get; set; } public string Title { get; set; } public string Overview { get; set; } public List Genres { get; set; } public List Labels { get; set; } public string Type { get; set; } public List SecondaryTypes { get; set; } public List Media { get; set; } public List Tracks { get; set; } } }