モデル再作成

This commit is contained in:
ろむねこ 2024-07-08 09:56:25 +09:00
parent f782f83408
commit 1de561c503
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

16
src/models/History.ts Normal file
View File

@ -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 }