about summary refs log tree commit diff
path: root/BugMine.Sdk/Events/Timeline/BugMineIssueData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BugMine.Sdk/Events/Timeline/BugMineIssueData.cs')
-rw-r--r--BugMine.Sdk/Events/Timeline/BugMineIssueData.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/BugMine.Sdk/Events/Timeline/BugMineIssueData.cs b/BugMine.Sdk/Events/Timeline/BugMineIssueData.cs
new file mode 100644
index 0000000..480102a
--- /dev/null
+++ b/BugMine.Sdk/Events/Timeline/BugMineIssueData.cs
@@ -0,0 +1,12 @@
+using LibMatrix.EventTypes;
+
+namespace BugMine.Web.Classes;
+
+[MatrixEvent(EventName = ProjectInfo.EventId)]
+public class BugMineIssueData : TimelineEventContent {
+    public const string EventId = "gay.rory.bugmine.issue";
+    public string Name { get; set; }
+    public string? AssignedTo { get; set; }
+    public string? Status { get; set; }
+    public string? Priority { get; set; }
+}
\ No newline at end of file