blob: dc81d0472ff63f4d9ce825253ee84b230fa3bafa (
plain) (
blame)
1
2
3
4
5
6
7
|
namespace MatrixUtils.Web.Classes.Constants;
public class RoomConstants {
public static readonly string[] DangerousRoomVersions = ["1", "8"];
public static readonly string[] UnsupportedRoomVersions = ["1", "2", "3", "4", "5", "6"];
public const string RecommendedRoomVersion = "11";
}
|