Files
aistudio-wpf-diagram/AIStudio.Wpf.ADiagram/Demos/Flowchart/SelectOption.cs
2021-07-23 09:42:22 +08:00

23 lines
449 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIStudio.Wpf.ADiagram.Demos.Flowchart
{
/// <summary>
/// 前端SelectOption
/// </summary>
public class SelectOption
{
public string value { get; set; }
public string text { get; set; }
public override string ToString()
{
return text;
}
}
}