about summary refs log tree commit diff
path: root/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs
diff options
context:
space:
mode:
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