You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
378 B
19 lines
378 B
using AdminPanel.Models;
|
|
|
|
|
|
|
|
namespace AdminPanel.Pages
|
|
{
|
|
public partial class UserListPanel
|
|
{
|
|
|
|
public List<User> Users { get; init; } = new List<User>(new User[]{ new User("Jean", "Jean@jean.jean", 1) , new User("Jeanne", "Jeanne@jean.jeanne", 2) });
|
|
|
|
|
|
public void OnAccessToUserSpaceClicked(User user)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|