yavsc/YavscLib/Workflow/ICommandForm.cs

11 lines
231 B
C#

8 years ago
namespace YavscLib
{
public interface ICommandForm
{
long Id { get; set; }
8 years ago
string ActionName { get; set; }
8 years ago
string Title { get; set; }
string ActivityCode { get; set; }
}
}