You've already forked nginx-proxy-manager
							
							
				mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 18:05:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			377 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			377 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package host
 | |
| 
 | |
| import (
 | |
| 	"npm/internal/model"
 | |
| )
 | |
| 
 | |
| // ListResponse is the JSON response for this 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"`
 | |
| }
 |