d_sms_service/APT.BaseData.Domain/ApiModel/Platform/Flow/FlowLine.cs
2024-10-28 13:45:58 +08:00

27 lines
610 B
C#

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