mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
14 lines
356 B
C#
14 lines
356 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ava.Common.Models.Amiibo
|
|
{
|
|
public struct AmiiboJson
|
|
{
|
|
[JsonPropertyName("amiibo")]
|
|
public List<AmiiboApi> Amiibo { get; set; }
|
|
[JsonPropertyName("lastUpdated")]
|
|
public DateTime LastUpdated { get; set; }
|
|
}
|
|
}
|