mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
11 lines
287 B
C#
11 lines
287 B
C#
using System.Text.Json.Nodes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace AssetRipper.Tools.JsonSerializer;
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(JsonObject))]
|
|
internal partial class JsonObjectSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|