mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
5b7339cd73
* Add Metadata Profiles * fixup! Codacy
32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
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<MediumResource>();
|
|
}
|
|
|
|
public List<ArtistResource> 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<ImageResource> Images { get; set; }
|
|
public string Title { get; set; }
|
|
public string Overview { get; set; }
|
|
public List<string> Genres { get; set; }
|
|
public List<string> Labels { get; set; }
|
|
public string Type { get; set; }
|
|
public List<string> SecondaryTypes { get; set; }
|
|
public List<MediumResource> Media { get; set; }
|
|
public List<TrackResource> Tracks { get; set; }
|
|
}
|
|
|
|
|
|
}
|