mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 15:32:37 -07:00
19 lines
431 B
C#
19 lines
431 B
C#
namespace PlexRequests.UI.Models
|
|
{
|
|
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 string EmailAddress { get; set; }
|
|
}
|
|
|
|
public enum UserType
|
|
{
|
|
PlexUser,
|
|
LocalUser
|
|
}
|
|
}
|
|
|