8 lines
118 B
TypeScript
8 lines
118 B
TypeScript
import { Group } from "./group";
|
|
|
|
export interface Lecture {
|
|
id?: number;
|
|
name: string;
|
|
groups: Array<Group>;
|
|
}
|