1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-12 16:18:07 -05:00
Files
IW4M-Admin/WebfrontCore/ViewModels/ActionInfo.cs
2024-07-16 22:27:27 +01:00

14 lines
364 B
C#

using System.Collections.Generic;
namespace IW4MAdmin.WebfrontCore.ViewModels
{
public class ActionInfo
{
public string Name { get; set; }
public List<InputInfo> Inputs { get; set; }
public string ActionButtonLabel { get; set; }
public string Action { get; set; }
public bool ShouldRefresh { get; set; }
}
}