aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiGamesSwitch.cs
blob: def7d1bcce94c130e4fba2f6421ae7fb6323df89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; }
    }
}