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
8 lines
209 B
C#
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; }
|
|
} |