e77ef69ee8
updated VPN plugin to use WebClient message is sent to client trying to execute commands before they are authenticated fixed rare issue with ToAdmins failing record bullet distance fraction for client kills (_customcallbacks) change client level/permissions through webfront ability to tempban through webfront
19 lines
498 B
C#
19 lines
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebfrontCore.ViewModels
|
|
{
|
|
public class InputInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public string Label { get; set; }
|
|
public string Placeholder { get; set; }
|
|
public string Type { get; set; }
|
|
public string Value { get; set; }
|
|
public Dictionary<string, string> Values { get; set; }
|
|
public bool Checked { get; set; }
|
|
}
|
|
}
|