diff options
author | crupest <crupest@outlook.com> | 2021-04-24 22:01:27 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-24 22:01:27 +0800 |
commit | 7d965bedbb48aed900f838d0fe65931143e5619e (patch) | |
tree | d4ae5c7d0c81ccb2e1fae378797f673acf2ce14b /BackEnd/Timeline/Configs/JwtOptions.cs | |
parent | 9adfa3c8311f4ace9388dc805f1a4df6fba97f0e (diff) | |
download | timeline-7d965bedbb48aed900f838d0fe65931143e5619e.tar.gz timeline-7d965bedbb48aed900f838d0fe65931143e5619e.tar.bz2 timeline-7d965bedbb48aed900f838d0fe65931143e5619e.zip |
refactor: Move token services.
Diffstat (limited to 'BackEnd/Timeline/Configs/JwtOptions.cs')
-rw-r--r-- | BackEnd/Timeline/Configs/JwtOptions.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Configs/JwtOptions.cs b/BackEnd/Timeline/Configs/JwtOptions.cs new file mode 100644 index 00000000..c400b8a6 --- /dev/null +++ b/BackEnd/Timeline/Configs/JwtOptions.cs @@ -0,0 +1,8 @@ +namespace Timeline.Configs
+{
+ public class JwtOptions
+ {
+ public string Issuer { get; set; } = default!;
+ public string Audience { get; set; } = default!;
+ }
+}
|