mirror of
https://github.com/wahyd4/next-dashboard.git
synced 2026-08-09 20:46:01 +10:00
12 lines
202 B
Go
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"`
|
|
}
|