dorisbot/database/models/discord/channel.go

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