about summary refs log tree commit diff
path: root/BugMine.Sdk/Events/Timeline/BugMineIssueComment.cs
blob: 50c73a1824d1981cdbb7040c79f7eb7685302f6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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; }
}