Got artist information actually coming back

This commit is contained in:
Jamie Rees 2019-07-24 14:02:06 +01:00
commit 7ce5074926
11 changed files with 702 additions and 152 deletions

View file

@ -0,0 +1,13 @@
namespace Ombi.Core.Models.Search.V2.Music
{
public class ArtistInformation
{
public string Name { get; set; }
public string Id { get; set; }
public string StartYear { get; set; }
public string EndYear { get; set; }
public string Type { get; set; }
public string Country { get; set; }
public string Region { get; set; }
}
}