yavsc/YavscLib/ICommandForm.cs

11 lines
227 B
C#

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