baliasnyifeliks 2249a36c96 Fix
2026-01-31 21:30:55 +02:00

26 lines
592 B
C#

using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace AnimeON.Models
{
public class Voice
{
[JsonPropertyName("id")]
public int Id { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("players")]
public List<VoicePlayer> Players { get; set; }
}
public class VoicePlayer
{
[JsonPropertyName("id")]
public int Id { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; }
}
}