src/app/model/api/assignment.ts
Properties |
|
completedOn |
completedOn:
|
Type : number
|
Optional |
description |
description:
|
Type : string
|
Optional |
formula |
formula:
|
Type : string
|
id |
id:
|
Type : string
|
title |
title:
|
Type : string
|
export interface Assignment {
id: string;
title: string;
formula: string;
description?: string;
completedOn?: number;
}