12 lines
219 B
C#
12 lines
219 B
C#
namespace Yavsc
|
||
{
|
||
public interface ICommandForm
|
||
{
|
||
long Id { get; set; }
|
||
string ActionName { get; set; }
|
||
string Title { get; set; }
|
||
string ActivityCode { get; set; }
|
||
|
||
}
|
||
}
|