mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-12 08:38:31 +08:00
16 lines
386 B
C#
16 lines
386 B
C#
namespace OpenAuth.App.Flow
|
|
{
|
|
/// <summary>
|
|
/// 流程连线
|
|
/// </summary>
|
|
public class FlowLine
|
|
{
|
|
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; }
|
|
}
|
|
}
|