7 lines
106 B
Go
7 lines
106 B
Go
|
package model
|
||
|
|
||
|
type ListResponse[E any] struct {
|
||
|
Total int64 `json:"total"`
|
||
|
List []E `json:"list"`
|
||
|
}
|