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; }
}