mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-27 20:42:23 -05:00
12 lines
372 B
C#
12 lines
372 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
|
|
{
|
|
}
|
|
}
|