ban/unban buttons added to profile
several css tweaks changed administratorIPs to PrivilegedClients added time step references to profile page
This commit is contained in:
15
WebfrontCore/ViewModels/ActionInfo.cs
Normal file
15
WebfrontCore/ViewModels/ActionInfo.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
15
WebfrontCore/ViewModels/InputInfo.cs
Normal file
15
WebfrontCore/ViewModels/InputInfo.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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 Placeholder { get; set; }
|
||||
public string Type { get; set; }
|
||||
public string Value { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user