about summary refs log tree commit diff
path: root/BugMine.Sdk/Events
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-04-25 06:31:52 +0200
committerRory& <root@rory.gay>2024-04-25 06:31:52 +0200
commit3054b456dcb54f069a5d8aaa615c1dfe060eef9b (patch)
treece89fbd1478206ac19fefa23035b68801bd25d4e /BugMine.Sdk/Events
parentAdd basic project management (diff)
downloadBugMine-3054b456dcb54f069a5d8aaa615c1dfe060eef9b.tar.xz
Add projects logic, start of issues
Diffstat (limited to 'BugMine.Sdk/Events')
-rw-r--r--BugMine.Sdk/Events/State/BugMineRoomMetadata.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/BugMine.Sdk/Events/State/BugMineRoomMetadata.cs b/BugMine.Sdk/Events/State/BugMineRoomMetadata.cs
new file mode 100644

index 0000000..a6686d3 --- /dev/null +++ b/BugMine.Sdk/Events/State/BugMineRoomMetadata.cs
@@ -0,0 +1,11 @@ +using LibMatrix.EventTypes; + +namespace BugMine.Web.Classes; + +[MatrixEvent(EventName = EventId)] +public class BugMineRoomMetadata : EventContent { + public const string EventId = "gay.rory.bugmine.room_metadata"; + + public string RoomCreationEventId { get; set; } + +} \ No newline at end of file