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 NestedCommands { get; set; } } }