namespace Hotline.Share.Dtos.FlowEngine
{
public class StartWorkflowDto : BasicWorkflowDto
{
///
/// 模板编码
///
//public string? DefinitionCode { get; set; }
public string DefinitionModuleCode { get; set; }
///
/// 流程title
///
public string Title { get; set; }
///
/// 是否转办
///
public bool IsForwarded { get; set; }
}
public class StartWorkflowDto
{
public TData Data { get; set; }
public BasicWorkflowDto Workflow { get; set; }
}
}