mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 13:47:15 +08:00
21 lines
460 B
Go
21 lines
460 B
Go
package pureftpd
|
|
|
|
type Create struct {
|
|
Username string `form:"username" json:"username"`
|
|
Password string `form:"password" json:"password"`
|
|
Path string `form:"path" json:"path"`
|
|
}
|
|
|
|
type Delete struct {
|
|
Username string `form:"username" json:"username"`
|
|
}
|
|
|
|
type ChangePassword struct {
|
|
Username string `form:"username" json:"username"`
|
|
Password string `form:"password" json:"password"`
|
|
}
|
|
|
|
type UpdatePort struct {
|
|
Port uint `form:"port" json:"port"`
|
|
}
|