init
This commit is contained in:
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user