!wip on music

This commit is contained in:
Jamie Rees 2019-07-24 22:18:29 +01:00
commit 0a192c5e83
17 changed files with 136 additions and 376 deletions

View file

@ -1,3 +1,5 @@
using System.Collections.Generic;
namespace Ombi.Core.Models.Search.V2.Music
{
public class ArtistInformation
@ -9,5 +11,30 @@ namespace Ombi.Core.Models.Search.V2.Music
public string Type { get; set; }
public string Country { get; set; }
public string Region { get; set; }
public string Disambiguation { get; set; }
public List<ReleaseGroup> ReleaseGroups { get; set; }
public List<ArtistLinks> Links { get; set; }
}
public class ArtistLinks
{
public string Image { get; set; }
public string Imdb { get; set; }
public string LastFm { get; set; }
public string Discogs { get; set; }
public string BandsInTown { get; set; }
public string Website { get; set; }
public string YouTube { get; set; }
public string Facebook { get; set; }
public string Twitter { get; set; }
}
public class ReleaseGroup
{
public string Id { get; set; }
public string Title { get; set; }
public string ReleaseDate { get; set; }
public string Type { get; set; }
}
}