* fix formatting rules * reformat ersatztv * reformat ersatztv.application * reformat ersatztv.core * refactor ersatztv.core.tests * reformat ersatztv.ffmpeg * reformat ersatztv.ffmpeg.tests * reformat ersatztv.infrastructure * cleanup infra mysql * cleanup infra sqlite * cleanup infra tests * cleanup ersatztv.scanner * cleanup ersatztv.scanner.tests * sln cleanup * update dependencies
21 lines
657 B
C#
21 lines
657 B
C#
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; } = [];
|
|
}
|