Swarm/DysonNetwork.Sphere/Auth/CheckpointModel.cs
2025-04-23 01:18:12 +08:00

17 lines
460 B
C#

namespace DysonNetwork.Sphere.Auth;
public class CloudflareVerificationResponse
{
public bool Success { get; set; }
public string[]? ErrorCodes { get; set; }
}
public class GoogleVerificationResponse
{
public bool Success { get; set; }
public float Score { get; set; }
public string Action { get; set; }
public DateTime ChallengeTs { get; set; }
public string Hostname { get; set; }
public string[]? ErrorCodes { get; set; }
}