📄 iprocessdefinition.cs
字号:
using System;
using NetBpm.Workflow.Organisation;
namespace NetBpm.Workflow.Definition
{
public interface IProcessDefinition : IProcessBlock
{
String ResponsibleUserName { get; }
Int32 Version { get; }
IStartState StartState { get; }
IEndState EndState { get; }
byte[] Image { get; }
String ImageMimeType { get; }
Int32 ImageHeight { get; }
Int32 ImageWidth { get; }
IUser GetResponsible();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -