cc-backend/graph/model/models.go

10 lines
251 B
Go
Raw Normal View History

package model
2021-10-26 10:22:02 +02:00
// Go look at `gqlgen.yml` and the schema package for other non-generated models.
2021-04-14 18:53:18 +02:00
type JobTag struct {
2021-10-26 10:22:02 +02:00
ID string `json:"id" db:"id"`
TagType string `json:"tagType" db:"tag_type"`
TagName string `json:"tagName" db:"tag_name"`
2021-04-22 15:00:54 +02:00
}