mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-01 01:16:27 -05:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJson.cs
Normal file
14
src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJson.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user