mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
12 lines
320 B
C#
12 lines
320 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AssetRipper.GUI.Electron;
|
|
|
|
[JsonSerializable(typeof(AssetPath))]
|
|
[JsonSerializable(typeof(BundlePath))]
|
|
[JsonSerializable(typeof(CollectionPath))]
|
|
[JsonSerializable(typeof(ResourcePath))]
|
|
internal sealed partial class PathSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|