We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d302ef2 commit d62ea64Copy full SHA for d62ea64
1 file changed
Applications/Backend/Source/HttpsRichardy.Federation.Application/Payloads/Secret/SecretScheme.cs
@@ -0,0 +1,9 @@
1
+namespace HttpsRichardy.Federation.Application.Payloads.Secret;
2
+
3
+public sealed record SecretScheme
4
+{
5
+ public string Id { get; set; } = default!;
6
+ public DateTime CreatedAt { get; set; }
7
+ public DateTime? ExpiresAt { get; set; }
8
+ public DateTime? GracePeriodEndsAt { get; set; }
9
+}
0 commit comments