mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
Got artist information actually coming back
This commit is contained in:
parent
517631826b
commit
7ce5074926
11 changed files with 702 additions and 152 deletions
13
src/Ombi.Core/Models/Search/V2/Music/ArtistInformation.cs
Normal file
13
src/Ombi.Core/Models/Search/V2/Music/ArtistInformation.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue