using System.Collections.Generic;
namespace Kean.Domain.Order.Models
{
///
/// 工作流路径
///
public class FlowPath
{
///
/// 标识
///
public int Id { get; set; }
///
/// 源节点
///
public int Source { get; set; }
///
/// 目标节点
///
public int Target { get; set; }
///
/// 锚点
///
public IEnumerable Anchors { get; set; }
///
/// 标签
///
public string Label { get; set; }
}
}