1 files changed, 12 insertions, 0 deletions
diff --git a/BugMine.Sdk/BugMineIssue.cs b/BugMine.Sdk/BugMineIssue.cs
new file mode 100644
index 0000000..6cf3409
--- /dev/null
+++ b/BugMine.Sdk/BugMineIssue.cs
@@ -0,0 +1,12 @@
+using LibMatrix;
+using LibMatrix.RoomTypes;
+
+namespace BugMine.Web.Classes;
+
+public class BugMineIssue(GenericRoom room, StateEventResponse data) {
+ public GenericRoom Room { get; } = room;
+ public StateEventResponse Data { get; } = data;
+ // public async IAsyncEnumerable<StateEventResponse> GetRelatedEventsAsync() {
+ //
+ // }
+}
\ No newline at end of file
|