init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
18
KretaWeb/Helpers/Grid/FunctionCommand.cs
Normal file
18
KretaWeb/Helpers/Grid/FunctionCommand.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.Web.Helpers.Grid
|
||||
{
|
||||
public class FunctionCommand
|
||||
{
|
||||
public FunctionCommand()
|
||||
{
|
||||
Enabled = true;
|
||||
}
|
||||
public string Name { get; set; }
|
||||
public int? NameResourceId { get; set; }
|
||||
public string ClientAction { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public string Classes { get; set; }
|
||||
public List<FunctionCommand> NestedCommands { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue