Support Jellyfin 10.7
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
namespace Jellyfin.Plugin.Simkl.API.Objects
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Jellyfin.Plugin.Simkl.API.Objects
|
||||
{
|
||||
/// <summary>
|
||||
/// User settings.
|
||||
@@ -8,11 +10,13 @@
|
||||
/// <summary>
|
||||
/// Gets or sets user.
|
||||
/// </summary>
|
||||
public User user { get; set; }
|
||||
[JsonPropertyName("user")]
|
||||
public User? User { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets error.
|
||||
/// </summary>
|
||||
public string error { get; set; }
|
||||
[JsonPropertyName("error")]
|
||||
public string? Error { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user