mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
!wip on music
This commit is contained in:
parent
7ce5074926
commit
0a192c5e83
17 changed files with 136 additions and 376 deletions
|
@ -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; }
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue