aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-02-28 13:14:23 +0200
committertranstrike <transtrike@gmail.com>2021-02-28 13:14:23 +0200
commit2a85613d6827f5a1d151b856739863fbe9782143 (patch)
treee66cdc9b8a64b37ef6fb8719b0a8d0a2e2102e54 /src/Services/DevHive.Services
parent26b18fe3727507d1b47ffb53ed773f133122eee8 (diff)
downloadDevHive-2a85613d6827f5a1d151b856739863fbe9782143.tar
DevHive-2a85613d6827f5a1d151b856739863fbe9782143.tar.gz
DevHive-2a85613d6827f5a1d151b856739863fbe9782143.zip
Removed JwtOptions
Diffstat (limited to 'src/Services/DevHive.Services')
-rw-r--r--src/Services/DevHive.Services/Options/JwtOptions.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Services/DevHive.Services/Options/JwtOptions.cs b/src/Services/DevHive.Services/Options/JwtOptions.cs
deleted file mode 100644
index d973f45..0000000
--- a/src/Services/DevHive.Services/Options/JwtOptions.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using Microsoft.Extensions.Options;
-
-namespace DevHive.Services.Options
-{
- public class JwtOptions
- {
- public JwtOptions(string secret)
- {
- this.Secret = secret;
- }
-
- public string Secret { get; init; }
- }
-}