1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-31 03:52:55 -06:00

12 lines
285 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace Ryujinx.Ui.Common.Models.Amiibo
{
public class AmiiboApiUsage
{
[JsonPropertyName("Usage")]
public string Usage { get; set; }
[JsonPropertyName("write")]
public bool Write { get; set; }
}
}