mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-12 16:18:07 -05:00
14 lines
364 B
C#
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; }
|
|
}
|
|
}
|