8 lines
210 B
C#
8 lines
210 B
C#
namespace Moonlight.Shared.Http.Responses.Auth;
|
|
|
|
public class LoginStartResponse
|
|
{
|
|
public string ClientId { get; set; }
|
|
public string Endpoint { get; set; }
|
|
public string RedirectUri { get; set; }
|
|
} |