Files
2022-12-16 02:04:54 +08:00

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; }
}