mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
9 lines
143 B
TypeScript
9 lines
143 B
TypeScript
|
|
import BaseModel from './base-model'
|
||
|
|
|
||
|
|
class Quiz extends BaseModel{
|
||
|
|
validate(): boolean {
|
||
|
|
return true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Quiz;
|