More work on the user management

This commit is contained in:
TidusJar 2016-05-15 23:01:17 -04:00
parent d44612217a
commit 15fae26397
8 changed files with 75 additions and 21 deletions

View 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
}
}