This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

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