using Kreta.Web.Models; namespace Kreta.Web.Areas.Nyomtatvanyok.Models { public class NyomtatvanyItemModel : LayoutModel { public NyomtatvanyItemModel() { } public string Id { get; set; } public string Name { get; set; } public string Type { get; set; } public string Label { get; set; } public bool Required { get; set; } public bool Disabled { get; set; } public string DropdownItemsUrl { get; set; } public bool? DropdownItemsUseGroup { get; set; } public string DropdownItemsGroupName { get; set; } public bool SelectFirstItem { get; set; } /*Cascade From extra data*/ public string CascadeFrom { get; set; } public string CascadeFromController { get; set; } public string CascadeFromAction { get; set; } public int? DefaultValue { get; set; } public string OnChangeFunction { get; set; } public string OnCloseFunction { get; set; } /*Radiobutton*/ public string Value { get; set; } public bool Checked { get; set; } public string GroupName { get; set; } public string GroupId { get; set; } /* Textbox */ public int? MaxLength { get; set; } } }