11 lines
227 B
C#
11 lines
227 B
C#
namespace YavscLib
|
||
{
|
||
public interface ICommandForm
|
||
{
|
||
long Id { get; set; }
|
||
string Action { get; set; }
|
||
string Title { get; set; }
|
||
string ActivityCode { get; set; }
|
||
|
||
}
|
||
} |