about summary refs log tree commit diff
path: root/BugMine.Sdk/BugMineIssue.cs
blob: 7b01b32a33177ca5dbaa6c757cc5af830b1411e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using LibMatrix;
using LibMatrix.RoomTypes;

namespace BugMine.Web.Classes;

public class BugMineIssue(GenericRoom room, StateEventResponse data) {
    public GenericRoom Room => room ?? throw new ArgumentNullException(nameof(room));
    public StateEventResponse Data => data ?? throw new ArgumentNullException(nameof(data));
    // public async IAsyncEnumerable<StateEventResponse> GetRelatedEventsAsync() {
    //     
    // }
}