namespace VPNAuth.Server.Database; public class AuthRequest { public int Id { get; set; } public DateTime InitTime { get; set; } public string Code { get; set; } public string? State { get; set; } public string ClientId { get; set; } public List Scopes { get; set; } public string CodeChallenge { get; set; } public string CodeChallengeMethod { get; set; } public bool Accepted { get; set; } }