using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Model;
[SuppressSniffer]
public class FlowTaskCandidateModel
{
///
/// 节点编码.
///
public string? nodeId { get; set; }
///
/// 节点名.
///
public string? nodeName { get; set; }
///
/// 是否候选人.
///
public bool isCandidates { get; set; }
///
/// 是否条件分支.
///
public bool isBranchFlow { get; set; }
///
/// 是否有候选人.
///
public bool hasCandidates { get; set; }
}