mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
10 lines
223 B
C#
10 lines
223 B
C#
namespace NzbDrone.Api.Authentication
|
|
{
|
|
public class LoginResource
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public bool RememberMe { get; set; }
|
|
}
|
|
}
|