kindergarten_java/reading-platform-frontend/src/api/generated/model/lesson.ts

27 lines
561 B
TypeScript
Raw Normal View History

/**
* 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;
}