Files
2018-03-15 09:22:43 +11:00

12 lines
202 B
Go

package models
import "github.com/jinzhu/gorm"
type WebHookData struct {
gorm.Model
Type string `json:"type"`
Title string `json:"title"`
Body string `json:"body"`
Name string `json:"name"`
}