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.
31 lines
781 B
31 lines
781 B
package dto
|
|
|
|
import "time"
|
|
|
|
type FtpInfo struct {
|
|
ID uint `json:"id"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
User string `json:"user"`
|
|
Password string `json:"password"`
|
|
Path string `json:"path"`
|
|
Status string `json:"status"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type FtpCreate struct {
|
|
User string `json:"user" validate:"required"`
|
|
Password string `json:"password" validate:"required"`
|
|
Path string `json:"path" validate:"required"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type FtpUpdate struct {
|
|
ID uint `json:"id"`
|
|
|
|
Password string `json:"password" validate:"required"`
|
|
Path string `json:"path" validate:"required"`
|
|
Status string `json:"status"`
|
|
Description string `json:"description"`
|
|
}
|