package cn.flightfeather.supervision.lightshare.repository
|
|
import cn.flightfeather.supervision.domain.entity.MeetingInfo
|
import cn.flightfeather.supervision.domain.entity.VMRoom
|
|
/**
|
* @author riku
|
* Date: 2019/12/19
|
*/
|
interface MeetingVMRoomRepository {
|
|
fun createVMRoom(userId: String, meeting: MeetingInfo): VMRoom
|
|
fun getRoom(roomId: String): VMRoom?
|
|
fun getRoomsByMeetingId(meetingId: String): List<VMRoom>
|
|
}
|