2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 06:17:16 +08:00
Files
panel/app/http/responses/cert/dns_list.go
2023-11-02 02:10:32 +08:00

9 lines
148 B
Go

package responses
import "panel/app/models"
type DNSList struct {
Total int64 `json:"total"`
Items []models.CertDNS `json:"items"`
}