10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
export class Schedule{
|
|
_id?: string;
|
|
did: string;
|
|
ontime: string;
|
|
offtime: string;
|
|
wday: [boolean];
|
|
dexp: Number;
|
|
on_uid: string;
|
|
off_uid:string;
|
|
}
|