using System.Collections.Generic; namespace AssetStudioCLI { internal class BaseNode { public List nodes = new List(); public string FullPath = ""; public readonly string Text; public BaseNode(string name) { Text = name; } } }