using System.Collections.Generic;
namespace Model.Models
{
///
/// 指令节点纯数据类(对应 UIShare.UIViewModel.InstructionNode)
///
public class InstructionNode
{
public string? Name { get; set; }
public IList Children { get; set; } = new List();
public object? Tag { get; set; }
}
}