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