mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-11-22 00:38:34 +08:00
22 lines
550 B
Go
22 lines
550 B
Go
package dto
|
|
|
|
import "time"
|
|
|
|
type ComposeTemplateCreate struct {
|
|
Name string `json:"name" validate:"required"`
|
|
Description string `json:"description"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type ComposeTemplateUpdate struct {
|
|
Description string `json:"description"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type ComposeTemplateInfo struct {
|
|
ID uint `json:"id"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Content string `json:"content"`
|
|
}
|