18 lines
492 B
C#
18 lines
492 B
C#
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; }
|
|
}
|
|
}
|