mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-04 04:42:29 -05:00
13 lines
283 B
C#
13 lines
283 B
C#
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; }
|
|
}
|
|
}
|