src/shared/model/Scheinexam.ts
Properties |
date |
date:
|
Type : string
|
scheinExamNo |
scheinExamNo:
|
Type : number
|
import { IRatedEntity, IRatedEntityDTO } from './RatedEntity';
export interface IScheinExam extends IRatedEntity {
date: string;
scheinExamNo: number;
}
export interface IScheinexamDTO extends IRatedEntityDTO {
date: string;
scheinExamNo: number;
}