mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
14 lines
No EOL
390 B
C#
14 lines
No EOL
390 B
C#
using Ombi.Api.Plex.Models.OAuth;
|
|
|
|
namespace Ombi.Models
|
|
{
|
|
public class UserAuthModel
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public bool RememberMe { get; set; }
|
|
public bool UsePlexAdminAccount { get; set; }
|
|
public bool UsePlexOAuth { get; set; }
|
|
public OAuthPin PlexTvPin { get; set; }
|
|
}
|
|
} |