about summary refs log tree commit diff
path: root/LibMatrix/Responses/Federation/ServerKeysResponse.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-12-05 13:49:02 +0100
committerRory& <root@rory.gay>2025-12-05 13:49:02 +0100
commitdc58a7878faf1ee567e0f1239d8c8869502fd03d (patch)
tree0c82a8fbabd4e9f3d6df498e9c4753191ab11b1e /LibMatrix/Responses/Federation/ServerKeysResponse.cs
parentUpdate deps (diff)
downloadLibMatrix-dc58a7878faf1ee567e0f1239d8c8869502fd03d.tar.xz
Federation work
Diffstat (limited to 'LibMatrix/Responses/Federation/ServerKeysResponse.cs')
-rw-r--r--LibMatrix/Responses/Federation/ServerKeysResponse.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibMatrix/Responses/Federation/ServerKeysResponse.cs b/LibMatrix/Responses/Federation/ServerKeysResponse.cs

index cb62e34..982907c 100644 --- a/LibMatrix/Responses/Federation/ServerKeysResponse.cs +++ b/LibMatrix/Responses/Federation/ServerKeysResponse.cs
@@ -38,7 +38,7 @@ public class ServerKeysResponse { [DebuggerDisplay("{Key}")] public class CurrentVerifyKey { [JsonPropertyName("key")] - public string Key { get; set; } + public required string Key { get; set; } } [DebuggerDisplay("{Key} (expired {Expired})")] @@ -52,4 +52,4 @@ public class ServerKeysResponse { set => ExpiredTs = (ulong)new DateTimeOffset(value).ToUnixTimeMilliseconds(); } } -} +} \ No newline at end of file