mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-10 19:52:00 +00: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
|
||
|
{
|
||
|
}
|
||
|
}
|