mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 05:47:17 +08:00
9 lines
151 B
Go
9 lines
151 B
Go
package responses
|
|
|
|
import "panel/app/models"
|
|
|
|
type UserList struct {
|
|
Total int64 `json:"total"`
|
|
Items []models.CertUser `json:"items"`
|
|
}
|