Change AnotherPlayer property type from string to JsonElement in AnimeON models

This commit is contained in:
Felix 2025-10-19 11:58:36 +03:00
parent 9d2588af86
commit c7a2cb47df

View File

@ -72,7 +72,7 @@ namespace AnimeON.Models
public List<Episode> Episodes { get; set; } public List<Episode> Episodes { get; set; }
[JsonPropertyName("anotherPlayer")] [JsonPropertyName("anotherPlayer")]
public string AnotherPlayer { get; set; } public System.Text.Json.JsonElement AnotherPlayer { get; set; }
} }
public class Episode public class Episode