Files
2023-04-16 20:11:40 +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;
}
}
}