dorisbot/database/models/discord/channel.go

14 lines
302 B
Go
Raw Normal View History

2019-09-16 14:06:23 +00:00
package discord
import "time"
// Channel -
type Channel struct {
ID string `db:"id"`
Server string `db:"server"`
EnableCMD bool `db:"enable_cmd"`
EnableNotify bool `db:"enable_notify"`
Ctime time.Time `db:"ctime"`
Mtime time.Time `db:"mtime"`
}