mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
11 lines
304 B
C#
11 lines
304 B
C#
using AssetRipper.IO.Files.SourceGenerator.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace AssetRipper.IO.Files.SourceGenerator;
|
|
|
|
[JsonSerializable(typeof(TypeDeclaration))]
|
|
[JsonSerializable(typeof(TypeDefinition))]
|
|
internal partial class InternalSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|