1Panel/backend/app/dto/compose_template.go

24 lines
582 B
Go
Raw Normal View History

2022-10-17 09:10:06 +08:00
package dto
import "time"
type ComposeTemplateCreate struct {
Name string `json:"name" validate:"required"`
Description string `json:"description"`
Content string `json:"content"`
}
type ComposeTemplateUpdate struct {
ID uint `json:"id"`
2022-10-17 09:10:06 +08:00
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"`
}