OpenAuth.Net/OpenAuth.App/Flow/FlowLine.cs

16 lines
386 B
C#
Raw Normal View History

2018-03-21 17:36:31 +08:00
namespace OpenAuth.App.Flow
2018-03-20 23:15:09 +08:00
{
2018-03-21 17:36:31 +08:00
/// <summary>
/// 流程连线
/// </summary>
public class FlowLine
2018-03-20 23:15:09 +08:00
{
public string id { get; set; }
public string type { get; set; }
public string from { get; set; }
public string to { get; set; }
public string name { get; set; }
public bool dash { get; set; }
}
}