init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
21
KretaWeb/Helpers/Modal/ModalButtonModel.cs
Normal file
21
KretaWeb/Helpers/Modal/ModalButtonModel.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Web.Routing;
|
||||
|
||||
namespace Kreta.Web.Helpers.Modal
|
||||
{
|
||||
public class ModalButtonModel
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Text { get; set; }
|
||||
public bool Enabled { get; set; } = true;
|
||||
public string Icon { get; set; }
|
||||
public string ImageUrl { get; set; }
|
||||
public string SpriteCssClass { get; set; }
|
||||
public string EventName { get; set; }
|
||||
public string ContainerCssClass { get; set; }
|
||||
public bool SecondLine { get; set; }
|
||||
|
||||
public RouteValueDictionary Parameters { get; set; }
|
||||
public Dictionary<string, object> HtmlAttributes { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue