1Panel/agent/app/dto/request/favorite.go

10 lines
168 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package request
type FavoriteCreate struct {
Path string `json:"path" validate:"required"`
}
type FavoriteDelete struct {
ID uint `json:"id" validate:"required"`
}