using Jellyfin.Plugin.Simkl.API.Objects;
namespace Jellyfin.Plugin.Simkl.API.Responses
{
///
/// Search file response.
///
public class SearchFileResponse
{
///
/// Gets or sets type.
///
public string? Type { get; set; }
///
/// Gets or sets episode.
///
public SimklEpisode? Episode { get; set; }
///
/// Gets or sets movie.
///
public SimklMovie? Movie { get; set; }
///
/// Gets or sets show.
///
public SimklShow? Show { get; set; }
}
}