1 files changed, 11 insertions, 0 deletions
diff --git a/BugMine.Sdk/Events/State/ProjectInfo.cs b/BugMine.Sdk/Events/State/ProjectInfo.cs
new file mode 100644
index 0000000..2d15bff
--- /dev/null
+++ b/BugMine.Sdk/Events/State/ProjectInfo.cs
@@ -0,0 +1,11 @@
+using LibMatrix.EventTypes;
+
+namespace BugMine.Web.Classes;
+
+[MatrixEvent(EventName = EventId)]
+public class ProjectInfo : EventContent {
+ public const string EventId = "gay.rory.bugmine.project_info";
+ public string? Name { get; set; }
+ public string? ProjectIcon { get; set; }
+ public string? Repository { get; set; }
+}
\ No newline at end of file
|