about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Classes/Constants/RoomConstants.cs
blob: da6bf0d09cf41d3f3eafcb460dd3556147d1e514 (plain) (blame)
1
2
3
4
5
6
7
namespace MatrixRoomUtils.Web.Classes.Constants; 

public class RoomConstants {
    
    public static readonly string[] DangerousRoomVersions = { "1", "8" };
    public const string RecommendedRoomVersion = "10";
}