take some notes while doing a task

This commit is contained in:
Julien Calixte
2023-04-13 00:30:40 +02:00
parent 049b52d6b1
commit 5888ea49e7
4 changed files with 35 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ export class TaskRecord implements Recordable {
public start: ISODate = toISODate(new Date())
public end: ISODate | undefined = undefined
public stepRecords: Record<string, StepRecordable> = {}
public notes = ''
public constructor(
public readonly id: string,