about summary refs log tree commit diff
path: root/BugMine.Sdk/Events/State/BugMineRoomMetadata.cs
blob: 734fd37206b78800e5f6fb6d37681e13a9684594 (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 BugMineRoomMetadata : EventContent {
    public const string EventId = "gay.rory.bugmine.room_metadata";
    
    public string RoomCreationEventId { get; set; }

}