mtfosbot/model/facebook_page.go

12 lines
260 B
Go
Raw Normal View History

2018-09-07 08:33:37 +00:00
package model
import "time"
// FacebookPage - struct
type FacebookPage struct {
ID string `db:"id" cc:"id"`
LastPost string `db:"lastpost" cc:"lastpost"`
Ctime time.Time `db:"ctime" cc:"ctime"`
Mtime time.Time `db:"mtime" cc:"ctime"`
}