using APT.Infrastructure.Core;
using System.Collections.Generic;
using System.Data;
namespace APT.BaseData.Domain.ApiModel
{
    /// 
    /// 流程连线
    /// 
    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; }
        public SetInfo setInfo { get; set; }
    }
    public class SetInfo
    {
        public ICollection Rules { get; set; }
    }
}