implement task controller

This commit is contained in:
João Geonizeli
2022-07-09 16:58:47 -03:00
parent 8c66fa8c85
commit 87af51d504
10 changed files with 228 additions and 19 deletions

View File

@@ -0,0 +1,6 @@
type TaskDto = {
id: number;
description: string;
createdAt: Date;
finishedAt?: Date;
}

View File

@@ -0,0 +1,3 @@
type UpdateTaskDto = {
description?: string;
}