kreta/KretaWeb/Helpers/Modal/ModalButtonModel.cs
2024-03-13 00:33:46 +01:00

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; }
}
}