mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-03 18:12:33 -05:00
12 lines
285 B
C#
12 lines
285 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; }
|
|
}
|
|
} |