mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-10 13:30:26 +05:00
8 lines
296 B
C#
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; |