using JNPF.DependencyInjection;
using Newtonsoft.Json.Linq;
namespace JNPF.WorkFlow.Entitys.Model;
[SuppressSniffer]
public class FlowTemplateJsonModel
{
///
/// 节点类型.
///
public string? type { get; set; }
///
/// 节点内容.
///
public string? content { get; set; }
///
/// 节点属性.
///
public JObject properties { get; set; }
///
/// 当前节点标识.
///
public string? nodeId { get; set; }
///
/// 上级节点标识.
///
public string? prevId { get; set; }
///
/// 子节点.
///
public FlowTemplateJsonModel? childNode { get; set; }
///
/// 节点条件.
///
public List? conditionNodes { get; set; }
///
/// 条件类型.
///
public string? conditionType { get; set; }
///
/// 是否分流.
///
public bool isInterflow { get; set; }
///
/// 是否条件分支.
///
public bool isBranchFlow { get; set; }
}