using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowTemplate;
[SuppressSniffer]
public class FlowTemplateInfoOutput
{
///
/// id.
///
public string? id { get; set; }
///
/// 流程编号.
///
public string? enCode { get; set; }
///
/// 流程名称.
///
public string? fullName { get; set; }
///
/// 流程类型.
///
public int? type { get; set; }
///
/// 流程分类.
///
public string? category { get; set; }
///
/// 图标.
///
public string? icon { get; set; }
///
/// 图标背景.
///
public string? iconBackground { get; set; }
///
/// 说明.
///
public string? description { get; set; }
///
/// 排序码.
///
public long? sortCode { get; set; }
///
/// 流程设计信息.
///
public string? flowTemplateJson { get; set; }
}