mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 18:05:59 +08:00
28 lines
832 B
Go
28 lines
832 B
Go
package dto
|
|
|
|
import "time"
|
|
|
|
type ComposeTemplateCreate struct {
|
|
Name string `json:"name" validate:"required"`
|
|
From string `json:"from" validate:"required,oneof=edit path"`
|
|
Description string `json:"description"`
|
|
Path string `json:"path"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type ComposeTemplateUpdate struct {
|
|
From string `json:"from" validate:"required,oneof=edit path"`
|
|
Description string `json:"description"`
|
|
Path string `json:"path"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type ComposeTemplateInfo struct {
|
|
ID uint `json:"id"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
Name string `json:"name"`
|
|
From string `json:"from"`
|
|
Description string `json:"description"`
|
|
Path string `json:"path"`
|
|
Content string `json:"content"`
|
|
}
|