Overnap

방 내부에서 쓰이는 방 데이터 타입 추가

export interface RoomData {
uuid: string;
name: string;
maxUsers: number;
users: string[];
}