mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 20:58:39 +00:00
11 lines
374 B
C#
11 lines
374 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace Ryujinx.Common.Utilities
|
|||
|
{
|
|||
|
[JsonSerializable(typeof(string[]), TypeInfoPropertyName = "StringArray")]
|
|||
|
[JsonSerializable(typeof(Dictionary<string, string>), TypeInfoPropertyName = "StringDictionary")]
|
|||
|
public partial class CommonJsonContext : JsonSerializerContext
|
|||
|
{
|
|||
|
}
|
|||
|
}
|