mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-20 16:36:36 +08:00
23 lines
449 B
C#
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;
|
|
}
|
|
}
|
|
}
|