Refactor nav pages, add page to see users of the server

This commit is contained in:
NicolasDorier
2017-09-16 01:15:17 +09:00
parent 6240abbb7b
commit eb9f669224
26 changed files with 176 additions and 63 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.ServerViewModels
{
public class UsersViewModel
{
public class UserViewModel
{
public string Name
{
get; set;
}
public string Email
{
get; set;
}
}
public string StatusMessage
{
get; set;
}
public List<UserViewModel> Users
{
get; set;
} = new List<UserViewModel>();
}
}