blob: fc6926de682fe4e59b0ad1100656cfb5a7b94ffa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
namespace VPNAuth.Server.Database;
public class UserInformation
{
public int Id { get; set; }
public string? Sub { get; set; } // username in config.json
public string? Name { get; set; }
public string? GivenName { get; set; }
public string? FamilyName { get; set; }
public string? PreferredUsername { get; set; }
public string? Email { get; set; }
public string? Picture { get; set; }
}
|