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/frontend/src/models/level.ts
2018-10-01 17:31:23 +02:00

8 lines
110 B
TypeScript

export interface ILevel {
name: string;
description: string;
level: number;
done: boolean;
}