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<string> Scopes { get; set; }
    public string CodeChallenge { get; set; }
    public string CodeChallengeMethod { get; set; }
    public bool Accepted { get; set; }
    public string Username { get; set; }
}