mirror of
https://github.com/cxfksword/jellyfin-plugin-danmu.git
synced 2026-02-02 17:59:58 +08:00
24 lines
615 B
C#
24 lines
615 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.Danmu.Scrapers.Dandan.Entity
|
|
{
|
|
public class MatchResponseV2
|
|
{
|
|
[JsonPropertyName("errorCode")]
|
|
public int ErrorCode { get; set; }
|
|
|
|
[JsonPropertyName("success")]
|
|
public bool Success { get; set; }
|
|
|
|
[JsonPropertyName("errorMessage")]
|
|
public string ErrorMessage { get; set; }
|
|
|
|
[JsonPropertyName("isMatched")]
|
|
public bool IsMatched { get; set; }
|
|
|
|
[JsonPropertyName("matches")]
|
|
public List<MatchResultV2> Matches { get; set; }
|
|
}
|
|
}
|