mirror of
https://github.com/metatube-community/jellyfin-plugin-metatube.git
synced 2026-05-05 02:13:31 +08:00
12 lines
251 B
C#
12 lines
251 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.MetaTube.Metadata;
|
|
|
|
public class ErrorInfo
|
|
{
|
|
[JsonPropertyName("code")]
|
|
public int Code { get; set; }
|
|
|
|
[JsonPropertyName("message")]
|
|
public string Message { get; set; }
|
|
} |