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