about summary refs log tree commit diff
path: root/BugMine.Sdk/Events/State/BugMineRoomMetadata.cs
blob: a6686d34baf18193765aa981b0994d7317ef6f12 (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; }
    
}