mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
several css tweaks changed administratorIPs to PrivilegedClients added time step references to profile page
16 lines
369 B
C#
16 lines
369 B
C#
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; }
|
|
}
|
|
}
|