import { Room } from "./rooms.model";

interface TransectionRoom{
    id: number ;
    employeeId : string ;
    remark : string ;
    room : Room;
}