blob: 11c05dc3ac4063d26a289b1edb5982d2bde20340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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; }
}
|