Files
Il2CppInspectorRedux/Il2CppInspector.Redux.FrontendCore/FrontendCoreJsonSerializerContext.cs

8 lines
296 B
C#

using System.Text.Json.Serialization;
namespace Il2CppInspector.Redux.FrontendCore;
[JsonSerializable(typeof(string))]
[JsonSerializable(typeof(List<string>))]
[JsonSerializable(typeof(Dictionary<string, string>))]
public partial class FrontendCoreJsonSerializerContext : JsonSerializerContext;