interface

This commit is contained in:
Paul Schneider 2017-02-02 15:13:32 +01:00
commit 6589a4f948
6 changed files with 86 additions and 25 deletions

11
YavscLib/ICommandForm.cs Normal file
View file

@ -0,0 +1,11 @@
namespace YavscLib
{
public interface ICommandForm
{
long Id { get; set; }
string Action { get; set; }
string Title { get; set; }
string ActivityCode { get; set; }
}
}