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-07-09 00:18:44 +0200
committerRory& <root@rory.gay>2024-07-09 00:18:44 +0200
commit63677f70bf0663ef3fae47b4fce64d9de7f428f4 (patch)
treed7fba0f181c45fee61952e3d01b67d5c2c9a9a92 /BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs
parentAdd basic issues, abstract project loading to component in web (diff)
downloadBugMine-github/master.tar.xz
Older changes HEAD github/master master
Diffstat (limited to 'BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs')
-rw-r--r--BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs b/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs

index 50c73a1..782439a 100644 --- a/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs +++ b/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs
@@ -1,10 +1,10 @@ using LibMatrix.EventTypes; -namespace BugMine.Web.Classes; +namespace BugMine.Sdk.Events.Timeline; [MatrixEvent(EventName = EventId)] public class BugMineIssueComment : TimelineEventContent { - public const string EventId = "gay.rory.bugmine.comment"; + public const string EventId = "gay.rory.bugmine.issue.comment"; public string Comment { get; set; } public string Author { get; set; } public DateTime Timestamp { get; set; }