1 files changed, 2 insertions, 2 deletions
diff --git a/LibMatrix/MatrixException.cs b/LibMatrix/MatrixException.cs
index 863c6d4..10f0433 100644
--- a/LibMatrix/MatrixException.cs
+++ b/LibMatrix/MatrixException.cs
@@ -5,10 +5,10 @@ namespace LibMatrix;
public class MatrixException : Exception {
[JsonPropertyName("errcode")]
- public string ErrorCode { get; set; }
+ public required string ErrorCode { get; set; }
[JsonPropertyName("error")]
- public string Error { get; set; }
+ public required string Error { get; set; }
[JsonPropertyName("soft_logout")]
public bool? SoftLogout { get; set; }
|