mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-02 15:50:51 +08:00
17 lines
317 B
C#
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;
|
|
}
|
|
}
|
|
}
|