diff --git a/src/models/History.ts b/src/models/History.ts new file mode 100644 index 0000000..54760ad --- /dev/null +++ b/src/models/History.ts @@ -0,0 +1,16 @@ +interface HistoryBaseItem { + id: string, + childId: string, + taskId: string, + registeredAt: Date, +} + +interface HistoryResponse extends HistoryBaseItem { + // 追加プロパティ +} + +interface HistoryListResponse { + list: HistoryResponse[] +} + +export { HistoryResponse, HistoryListResponse }