Radarr/src/Radarr.Http/Authentication/LoginResource.cs

10 lines
221 B
C#

namespace Radarr.Http.Authentication
{
public class LoginResource
{
public string Username { get; set; }
public string Password { get; set; }
public string RememberMe { get; set; }
}
}