mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-04-28 07:02:00 +02:00
11 lines
276 B
C#
11 lines
276 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace Ryujinx.Common.Configuration
|
||
|
{
|
||
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
||
|
[JsonSerializable(typeof(ModMetadata))]
|
||
|
public partial class ModMetadataJsonSerializerContext : JsonSerializerContext
|
||
|
{
|
||
|
}
|
||
|
}
|