Files
Moonlight/Moonlight.Shared/Http/Responses/Auth/AuthStartResponse.cs
Masu Baumgartner 9d1351527d Started implementing oauth2 based on MoonCore helper services
Its more or less a test how well the helper services improve the implementation. I havent implemented anything fancy here atm. Just testing the oauth2 flow
2024-10-18 00:03:20 +02:00

8 lines
209 B
C#

namespace Moonlight.Shared.Http.Responses.Auth;
public class AuthStartResponse
{
public string Endpoint { get; set; }
public string ClientId { get; set; }
public string RedirectUri { get; set; }
}