OpenAuth.Net/OpenAuth.App/Flow/FlowNode.cs

24 lines
484 B
C#
Raw Normal View History

2018-03-20 23:15:09 +08:00
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; }
}
}