about summary refs log tree commit diff
path: root/BugMine.Sdk/Events/Timeline/BugMineIssueComment.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/Events/Timeline/BugMineIssueComment.cs
parentStart adding pages (diff)
downloadBugMine-68fe1a2284045908d92ef06c1c26cd937ded784e.tar.xz
Add basic project management
Diffstat (limited to 'BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs')
-rw-r--r--BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs b/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs
new file mode 100644

index 0000000..50c73a1 --- /dev/null +++ b/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs
@@ -0,0 +1,11 @@ +using LibMatrix.EventTypes; + +namespace BugMine.Web.Classes; + +[MatrixEvent(EventName = EventId)] +public class BugMineIssueComment : TimelineEventContent { + public const string EventId = "gay.rory.bugmine.comment"; + public string Comment { get; set; } + public string Author { get; set; } + public DateTime Timestamp { get; set; } +} \ No newline at end of file