mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
16 lines
383 B
Go
16 lines
383 B
Go
package dnsprovider
|
|
|
|
import (
|
|
"npm/internal/model"
|
|
)
|
|
|
|
// ListResponse is the JSON response for the list
|
|
type ListResponse struct {
|
|
Total int `json:"total"`
|
|
Offset int `json:"offset"`
|
|
Limit int `json:"limit"`
|
|
Sort []model.Sort `json:"sort"`
|
|
Filter []model.Filter `json:"filter,omitempty"`
|
|
Items []Model `json:"items,omitempty"`
|
|
}
|