From 68fe1a2284045908d92ef06c1c26cd937ded784e Mon Sep 17 00:00:00 2001 From: Rory& Date: Sat, 20 Apr 2024 23:48:43 +0200 Subject: Add basic project management --- BugMine.Sdk/Events/State/ProjectInfo.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 BugMine.Sdk/Events/State/ProjectInfo.cs (limited to 'BugMine.Sdk/Events/State') 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 -- cgit 1.5.1