mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 06:00:50 -07:00
20 lines
315 B
C#
20 lines
315 B
C#
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
|
|
}
|
|
}
|
|
|