mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
Refactor nav pages, add page to see users of the server
This commit is contained in:
33
BTCPayServer/Models/ServerViewModels/UsersViewModel.cs
Normal file
33
BTCPayServer/Models/ServerViewModels/UsersViewModel.cs
Normal 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>();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user