Stream custom live channels using your own media
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
657 B

namespace ErsatzTV.Infrastructure.Emby.Models;
public class EmbySearchHintsResponse
{
public List<EmbySearchHintResponse> SearchHints { get; set; } = [];
public int TotalRecordCount { get; set; }
}
public class EmbySearchHintResponse
{
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 EmbyImageTagsResponse ImageTags { get; set; } = new();
public List<string> BackdropImageTags { get; set; } = [];
}