This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
Lateinicus/src/models/vocab.ts

15 lines
225 B
TypeScript
Raw Normal View History

export enum ReviewMode {
GER_TO_LAT,
LAT_TO_GER,
}
2018-09-06 18:05:21 +00:00
export interface IVocab {
german: string;
latin: string;
hint?: string;
mnemonic?: string;
// This number is lesson specific
id: number;
};