2025-09-20 11:47:28 +03: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; }
}
}