extension Room: Equatable {
    public static func == (lhs: Room, rhs: Room) -> Bool {
        return lhs.uuid == rhs.uuid
    }
}