taskResponse作成

This commit is contained in:
rca 2024-06-25 00:07:31 +09:00
parent a26217a867
commit c8be7dc01d

10
src/models/Task.ts Normal file
View File

@ -0,0 +1,10 @@
interface TaskResponse {
id: String,
name: String,
iconEmoji: String,
bgColor: String,
reward: number
attached: String[]
}
export { TaskResponse }