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

9 lines
342 B
C#

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