Files
todo-list/server/src/dto/task.new.dto.ts
2022-07-10 14:33:56 -03:00

3 lines
51 B
TypeScript

export type NewTaskDto = {
description: string;
}