about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Classes/RoomCreationTemplates/IRoomCreationTemplate.cs
blob: bbb09b71e21cdf0564a11f13dfd552f301ea0704 (plain) (blame)
1
2
3
4
5
6
7
8
using MatrixRoomUtils.Core.Responses;

namespace MatrixRoomUtils.Web.Classes.RoomCreationTemplates;

public interface IRoomCreationTemplate {
    public CreateRoomRequest CreateRoomRequest { get; }
    public string Name { get; }
}