mirror of
				https://github.com/abhinavxd/libredesk.git
				synced 2025-11-03 21:43:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			315 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			315 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import "time"
 | 
						|
 | 
						|
type CannedResponse struct {
 | 
						|
	ID        string    `db:"id" json:"id"`
 | 
						|
	CreatedAt time.Time `db:"created_at" json:"created_at"`
 | 
						|
	UpdatedAt time.Time `db:"updated_at" json:"updated_at"`
 | 
						|
	Title     string    `db:"title" json:"title"`
 | 
						|
	Content   string    `db:"content" json:"content"`
 | 
						|
}
 |