21 lines
695 B
C#
21 lines
695 B
C#
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; }
|
|
}
|
|
}
|