mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-27 09:15:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			582 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			582 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 {
 | |
| 	ID          uint   `json:"id"`
 | |
| 	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"`
 | |
| }
 |