mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 08:56:24 +02: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
|
|
{
|
|
}
|
|
}
|