kreta/KretaWeb/Models/EditorTemplates/ModelWindowBaseModel.cs
2024-03-13 00:33:46 +01:00

10 lines
226 B
C#

using System.Collections.Generic;
using Kreta.Web.Helpers.Modal;
namespace Kreta.Web.Models.EditorTemplates
{
public class ModelWindowBaseModel
{
public List<ModalButtonModel> Buttons { get; set; }
}
}