14 lines
250 B
Go
14 lines
250 B
Go
package dto
|
|
|
|
type ApiResponse struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Data interface{} `json:"data"`
|
|
}
|
|
|
|
type TaskListResponse struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Data []Task `json:"data"`
|
|
}
|