blob: 6cf340968883eb777ea82a8b33a838551f7a1ceb (
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 { get; } = room;
public StateEventResponse Data { get; } = data;
// public async IAsyncEnumerable<StateEventResponse> GetRelatedEventsAsync() {
//
// }
}
|