Files
aistudio-wpf-diagram/AIStudio.Wpf.Flowchart/SelectOption.cs

17 lines
317 B
C#
Raw Normal View History

2021-07-29 13:55:18 +08:00
namespace AIStudio.Wpf.Flowchart
2021-07-23 09:42:22 +08:00
{
/// <summary>
/// 前端SelectOption
/// </summary>
public class SelectOption
{
public string value { get; set; }
public string text { get; set; }
public override string ToString()
{
return text;
}
}
}