about summary refs log tree commit diff
path: root/BugMine.Sdk/BugMineIssue.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-04-20 23:48:43 +0200
committerRory& <root@rory.gay>2024-04-20 23:48:43 +0200
commit68fe1a2284045908d92ef06c1c26cd937ded784e (patch)
tree71144f404f060888dcc5e4036e038abe857adc4e /BugMine.Sdk/BugMineIssue.cs
parentStart adding pages (diff)
downloadBugMine-68fe1a2284045908d92ef06c1c26cd937ded784e.tar.xz
Add basic project management
Diffstat (limited to 'BugMine.Sdk/BugMineIssue.cs')
-rw-r--r--BugMine.Sdk/BugMineIssue.cs12
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