27 lines
561 B
TypeScript
27 lines
561 B
TypeScript
|
|
/**
|
||
|
|
* Generated by orval v8.5.3 🍺
|
||
|
|
* Do not edit manually.
|
||
|
|
* Reading Platform API
|
||
|
|
* Reading Platform Backend Service API Documentation
|
||
|
|
* OpenAPI spec version: 1.0.0
|
||
|
|
*/
|
||
|
|
import type { LocalTime } from './localTime';
|
||
|
|
|
||
|
|
export interface Lesson {
|
||
|
|
id?: number;
|
||
|
|
tenantId?: number;
|
||
|
|
courseId?: number;
|
||
|
|
classId?: number;
|
||
|
|
teacherId?: number;
|
||
|
|
title?: string;
|
||
|
|
lessonDate?: string;
|
||
|
|
startTime?: LocalTime;
|
||
|
|
endTime?: LocalTime;
|
||
|
|
location?: string;
|
||
|
|
status?: string;
|
||
|
|
notes?: string;
|
||
|
|
createdAt?: string;
|
||
|
|
updatedAt?: string;
|
||
|
|
deleted?: number;
|
||
|
|
}
|