mirror of
https://github.com/sphildreth/roadie
synced 2025-01-24 02:05:03 +00:00
27 lines
No EOL
733 B
C#
27 lines
No EOL
733 B
C#
namespace Roadie.Library.MetaData.MusicBrainz
|
|
{
|
|
public class CoverArtArchivesResult
|
|
{
|
|
public Image[] images { get; set; }
|
|
public string release { get; set; }
|
|
}
|
|
|
|
public class Image
|
|
{
|
|
public string[] types { get; set; }
|
|
public bool front { get; set; }
|
|
public bool back { get; set; }
|
|
public int edit { get; set; }
|
|
public string image { get; set; }
|
|
public string comment { get; set; }
|
|
public bool approved { get; set; }
|
|
public string id { get; set; }
|
|
public Thumbnails thumbnails { get; set; }
|
|
}
|
|
|
|
public class Thumbnails
|
|
{
|
|
public string large { get; set; }
|
|
public string small { get; set; }
|
|
}
|
|
} |