Files
aistudio-wpf-diagram/AIStudio.Wpf.Flowchart/SelectOption.cs
2021-07-29 13:55:18 +08:00

17 lines
317 B
C#

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