dorisbot/database/models/discord/channel.go
2019-09-16 14:06:23 +00:00

14 lines
302 B
Go

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