Recreated solution with web app template. Improved theme. Switched to ShadcnBlazor library
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Auth;
|
||||
|
||||
public class AuthClaimResponse
|
||||
{
|
||||
// ReSharper disable once UnusedMember.Global
|
||||
// Its used by the json serializer ^^
|
||||
public AuthClaimResponse()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public AuthClaimResponse(string type, string value)
|
||||
{
|
||||
Type = type;
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public string Type { get; set; }
|
||||
public string Value { get; set; }
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Auth;
|
||||
|
||||
public class AuthSchemeResponse
|
||||
{
|
||||
public string DisplayName { get; set; }
|
||||
public string Identifier { get; set; }
|
||||
}
|
||||
3
Moonlight.Shared/Http/Responses/Auth/ClaimResponse.cs
Normal file
3
Moonlight.Shared/Http/Responses/Auth/ClaimResponse.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Auth;
|
||||
|
||||
public record ClaimResponse(string Type, string Value);
|
||||
3
Moonlight.Shared/Http/Responses/Auth/SchemeResponse.cs
Normal file
3
Moonlight.Shared/Http/Responses/Auth/SchemeResponse.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Auth;
|
||||
|
||||
public record SchemeResponse(string Name, string DisplayName);
|
||||
Reference in New Issue
Block a user