transection.model.ts 149 Bytes
Newer Older
1 2
import { Room } from "./rooms.model";

DESKTOP-HF0LVOG\myhr committed
3 4 5 6
interface TransectionRoom{
    id: number ;
    employeeId : string ;
    remark : string ;
7
    room : Room;
DESKTOP-HF0LVOG\myhr committed
8
}