mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
519 B
23 lines
519 B
11 months ago
|
package request
|
||
|
|
||
|
import "github.com/1Panel-dev/1Panel/backend/app/dto"
|
||
|
|
||
|
type PHPExtensionsSearch struct {
|
||
|
dto.PageInfo
|
||
|
All bool `json:"all"`
|
||
|
}
|
||
|
|
||
|
type PHPExtensionsCreate struct {
|
||
|
Name string `json:"name" validate:"required"`
|
||
|
Extensions string `json:"extensions" validate:"required"`
|
||
|
}
|
||
|
|
||
|
type PHPExtensionsUpdate struct {
|
||
|
ID uint `json:"id" validate:"required"`
|
||
|
Extensions string `json:"extensions" validate:"required"`
|
||
|
}
|
||
|
|
||
|
type PHPExtensionsDelete struct {
|
||
|
ID uint `json:"id" validate:"required"`
|
||
|
}
|