mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 15:46:44 +00:00
9 lines
295 B
C#
9 lines
295 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace Ryujinx.Ui.Common.Models.Github
|
|||
|
{
|
|||
|
[JsonSerializable(typeof(GithubReleasesJsonResponse), GenerationMode = JsonSourceGenerationMode.Metadata)]
|
|||
|
public partial class GithubReleasesJsonSerializerContext : JsonSerializerContext
|
|||
|
{
|
|||
|
}
|
|||
|
}
|