mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-12 08:38:31 +08:00
24 lines
484 B
C#
24 lines
484 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace OpenAuth.App.Flow
|
|||
|
{
|
|||
|
public class FlowNode
|
|||
|
{
|
|||
|
public const string START = "start round mix";
|
|||
|
public const string END = "end round";
|
|||
|
public const string NODE = "node";
|
|||
|
|
|||
|
public string id { get; set; }
|
|||
|
|
|||
|
public string name { get; set; }
|
|||
|
|
|||
|
public string type { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|