mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-05-10 09:20:36 +00:00
10 lines
292 B
C#
10 lines
292 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(TitleUpdateMetadata))]
|
|
public partial class TitleUpdateMetadataJsonSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|
|
}
|