mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
15 lines
445 B
C#
15 lines
445 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace Ryujinx.Ui.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; }
|
|||
|
}
|
|||
|
}
|