mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 02:30:08 -06:00
16 lines
444 B
C#
16 lines
444 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ava.Common.Models.Amiibo
|
|
{
|
|
public class AmiiboApiGamesSwitch
|
|
{
|
|
[JsonPropertyName("amiiboUsage")]
|
|
public List<AmiiboApiUsage> AmiiboUsage { get; set; }
|
|
[JsonPropertyName("gameID")]
|
|
public List<string> GameId { get; set; }
|
|
[JsonPropertyName("gameName")]
|
|
public string GameName { get; set; }
|
|
}
|
|
}
|