study-lib-frontend/src/app/subject/interfaces/comment.interface.ts
2020-12-12 14:22:07 +01:00

6 lines
82 B
TypeScript

export interface Comment {
id?: number;
text: string;
subjectId?: number;
}