mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-01 19:16:25 +02:00
9 lines
293 B
C#
9 lines
293 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ui.Common.Models.Github
|
|
{
|
|
[JsonSerializable(typeof(GithubReleasesJsonResponse), GenerationMode = JsonSourceGenerationMode.Metadata)]
|
|
public partial class GithubReleasesJsonSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|
|
}
|