mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-01-28 05:29:38 +05:00
9 lines
342 B
C#
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; |