This repository has been archived on 2022-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
dcbot-old/models/server.go

20 lines
463 B
Go

package models
type Server struct {
tableName struct{} `pg:",alias:server"`
ID string `pg:",pk" json:"id" gqlgen:"id"`
Lang string `pg:",use_zero"`
CoordsTranslation string `pg:",use_zero"`
Groups []*Group
}
type ServerFilter struct {
tableName struct{} `urlstruct:"server"`
ID []string
Limit int `urlstruct:",nowhere"`
Offset int `urlstruct:",nowhere"`
Order []string `urlstruct:",nowhere"`
}