diff options
author | Tim <contact@bytim.eu> | 2025-04-19 12:16:15 +0200 |
---|---|---|
committer | Tim <contact@bytim.eu> | 2025-04-19 12:16:15 +0200 |
commit | ff9b1e112ed14746ed74dfff1fb4c19efd5502d4 (patch) | |
tree | 5ab9831c7be0c0ff344feb06e049115d6a58287a /VPNAuth.Server/Config.cs | |
parent | 4b2ad030fa381662f4b0c2464e97b0d2c5f6a716 (diff) | |
download | VPNAuth-ff9b1e112ed14746ed74dfff1fb4c19efd5502d4.tar.xz VPNAuth-ff9b1e112ed14746ed74dfff1fb4c19efd5502d4.zip |
Add user information settings
Diffstat (limited to 'VPNAuth.Server/Config.cs')
-rw-r--r-- | VPNAuth.Server/Config.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/VPNAuth.Server/Config.cs b/VPNAuth.Server/Config.cs index 84b01ef..32e72fa 100644 --- a/VPNAuth.Server/Config.cs +++ b/VPNAuth.Server/Config.cs @@ -6,14 +6,6 @@ public class ConfigUser { public string? Username { get; set; } public List<string>? Ips { get; set; } - - public string? Sub { get; set; } - 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; } } public class ConfigApp |