src/app/todo/todo.model.ts
Properties |
| completed |
Type : boolean
|
|
Defined in src/app/todo/todo.model.ts:7
|
| endDate |
Type : string
|
|
Defined in src/app/todo/todo.model.ts:6
|
| id |
Type : string
|
|
Defined in src/app/todo/todo.model.ts:2
|
| notes |
Type : string
|
|
Defined in src/app/todo/todo.model.ts:4
|
| startDate |
Type : string
|
|
Defined in src/app/todo/todo.model.ts:5
|
| title |
Type : string
|
|
Defined in src/app/todo/todo.model.ts:3
|
export class Todo {
id: string;
title: string;
notes: string;
startDate: string;
endDate: string;
completed: boolean;
}