mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
676 B
20 lines
676 B
namespace ErsatzTV.Infrastructure.Jellyfin.Models; |
|
|
|
public class JellyfinSearchHintsResponse |
|
{ |
|
public List<JellyfinSearchHintResponse> SearchHints { get; set; } = []; |
|
public int TotalRecordCount { get; set; } |
|
} |
|
|
|
public class JellyfinSearchHintResponse |
|
{ |
|
public string Id { get; set; } |
|
public string Name { get; set; } |
|
public string Type { get; set; } |
|
public string MatchedTerm { get; set; } |
|
public int? IndexNumber { get; set; } |
|
public int? ProductionYear { get; set; } |
|
public string Overview { get; set; } |
|
public JellyfinImageTagsResponse ImageTags { get; set; } = new(); |
|
public List<string> BackdropImageTags { get; set; } = []; |
|
} |