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