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