mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 15:32:37 -07:00
More work on the user management
This commit is contained in:
parent
d44612217a
commit
15fae26397
8 changed files with 75 additions and 21 deletions
20
PlexRequests.UI/Models/UserManagementUsersViewModel.cs
Normal file
20
PlexRequests.UI/Models/UserManagementUsersViewModel.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using System;
|
||||
|
||||
namespace PlexRequests.UI
|
||||
{
|
||||
public class UserManagementUsersViewModel
|
||||
{
|
||||
public string Username{get;set;}
|
||||
public string Claims{get;set;}
|
||||
public int Id {get;set;}
|
||||
public string Alias {get;set;}
|
||||
public UserType Type { get; set;}
|
||||
}
|
||||
|
||||
public enum UserType
|
||||
{
|
||||
PlexUser,
|
||||
LocalUser
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue