ifield.cs
来自「基于DotNet的开源工作流引擎」· CS 代码 · 共 16 行
CS
16 行
using System;
using NetBpm.Workflow.Delegation;
namespace NetBpm.Workflow.Definition
{
public interface IField //: System.Runtime.Serialization.ISerializable
{
String Name { get; }
String Description { get; }
IAttribute Attribute { get; }
IState State { get; }
FieldAccess Access { get; }
IHtmlFormatter GetHtmlFormatter();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?