using JNPF.WorkFlow.Entitys.Model;
namespace JNPF.WorkFlow.Entitys.Dto.FlowTemplate;
public class FlowJsonInfo
{
///
/// id.
///
public string? id { get; set; }
///
/// 流程编码.
///
public string? flowId { get; set; }
///
/// 流程名称.
///
public string? fullName { get; set; }
///
/// 流程JOSN包.
///
public FlowTemplateJsonModel? flowTemplateJson { get; set; }
///
/// 是否删除.
///
public bool? isDelete { get; set; }
}