1 files changed, 0 insertions, 19 deletions
diff --git a/MatrixRoomUtils.Core/MessagesResponse.cs b/MatrixRoomUtils.Core/MessagesResponse.cs
deleted file mode 100644
index 7a303bc..0000000
--- a/MatrixRoomUtils.Core/MessagesResponse.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Text.Json.Serialization;
-using MatrixRoomUtils.Core.Interfaces;
-using MatrixRoomUtils.Core.Responses;
-
-namespace MatrixRoomUtils.Core;
-
-public class MessagesResponse {
- [JsonPropertyName("start")]
- public string Start { get; set; }
-
- [JsonPropertyName("end")]
- public string? End { get; set; }
-
- [JsonPropertyName("chunk")]
- public List<StateEventResponse> Chunk { get; set; } = new();
-
- [JsonPropertyName("state")]
- public List<StateEventResponse> State { get; set; } = new();
-}
\ No newline at end of file
|