We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d013593 commit 5fc1af2Copy full SHA for 5fc1af2
Tests/UnitTests/Utils/Utils.JwtSettings.cs
@@ -0,0 +1,12 @@
1
+namespace Ecommerce.UnitTests;
2
+
3
+public partial class Utils
4
+{
5
+ public record JwtSettings
6
+ {
7
+ public static int ExpiryMinutes { get; } = 60;
8
+ public static string Issuer { get; } = "Ecommerce.Issuer";
9
+ public static string Audience { get; } = "Ecommerce.Audience";
10
+ public static string SecretKey { get; } = "secretkey-secretkey-secretkey-secretkey-secretkey";
11
+ }
12
+}
0 commit comments