mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 00:32:57 -07:00
19 lines
No EOL
656 B
C#
19 lines
No EOL
656 B
C#
using Ombi.Api.Lidarr.Models;
|
|
|
|
namespace Ombi.Core.Models.Search
|
|
{
|
|
public class SearchArtistViewModel
|
|
{
|
|
public string ArtistName { get; set; }
|
|
public string ForignArtistId { get; set; }
|
|
public string Overview { get; set; }
|
|
public string Disambiguation { get; set; }
|
|
public string Banner { get; set; }
|
|
public string Poster { get; set; }
|
|
public string Logo { get; set; }
|
|
public bool Monitored { get; set; }
|
|
public string ArtistType { get; set; }
|
|
public string CleanName { get; set; }
|
|
public Link[] Links { get; set; } // Couldn't be bothered to map it
|
|
}
|
|
} |