Files
libredesk/internal/cannedresp/models/models.go
2024-08-26 01:35:21 +05:30

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"`
}