namespace AIStudio.Wpf.Flowchart { /// /// 前端SelectOption /// public class SelectOption { public string value { get; set; } public string text { get; set; } public override string ToString() { return text; } } }