14 lines
357 B
C#
14 lines
357 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace Ryujinx.Ui.Common.Models.Amiibo
|
|||
|
{
|
|||
|
public struct AmiiboJson
|
|||
|
{
|
|||
|
[JsonPropertyName("amiibo")]
|
|||
|
public List<AmiiboApi> Amiibo { get; set; }
|
|||
|
[JsonPropertyName("lastUpdated")]
|
|||
|
public DateTime LastUpdated { get; set; }
|
|||
|
}
|
|||
|
}
|