yavsc/YavscLib/ICommandForm.cs

11 lines
227 B
C#
Raw Normal View History

2017-02-02 15:13:32 +01:00
namespace YavscLib
{
public interface ICommandForm
{
long Id { get; set; }
string Action { get; set; }
string Title { get; set; }
string ActivityCode { get; set; }
}
}