dorisbot/database/models/discord/server.go

14 lines
278 B
Go
Raw Normal View History

2019-09-16 14:06:23 +00:00
package discord
import "time"
// Server -
type Server struct {
ID string `db:"id"`
Name string `db:"name"`
Permission int `db:"permission"`
Owner string `db:"owner"`
Ctime time.Time `db:"ctime"`
Mtime time.Time `db:"mtime"`
}