- using Newtonsoft.Json.Linq;
- namespace AssetBank.Editor.SchemaConverter.Data.Input
- {
- /// <summary>
- /// Represents a single node from the original, flat JSON array.
- /// </summary>
- public class OriginalNode
- {
- public string type_id;
- public string anchor_id;
- public JObject data;
- }
- }
|