about summary refs log tree commit diff
path: root/BugMine.Sdk/Events/State/ProjectInfo.cs
blob: 2d15bff2bcb47fb5e8d4c4310b7c654d805a6deb (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 ProjectInfo : EventContent {
    public const string EventId = "gay.rory.bugmine.project_info";
    public string? Name { get; set; }
    public string? ProjectIcon { get; set; }
    public string? Repository { get; set; }
}