IW4M-Admin/WebfrontCore/ViewModels/ActionInfo.cs

17 lines
417 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace 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; }
2019-08-04 18:06:07 -04:00
public bool ShouldRefresh { get; set; }
}
}