1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 14:18:20 -05:00
RaidMax e8481b5b25 fix accidental improper name for login ClientId
added label field to InputInfo
added logout button
revert graph color
2018-04-05 17:50:04 -05:00

17 lines
392 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; }
}
}