1Panel/backend/app/dto/request/nginx.go

8 lines
217 B
Go
Raw Normal View History

2022-12-09 17:16:07 +08:00
package request
type NginxConfigFileUpdate struct {
Content string `json:"content" validate:"required"`
FilePath string `json:"filePath" validate:"required"`
Backup bool `json:"backup" validate:"required"`
}