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