mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-01-14 21:49:06 +01:00
10 lines
251 B
Go
10 lines
251 B
Go
package model
|
|
|
|
// Go look at `gqlgen.yml` and the schema package for other non-generated models.
|
|
|
|
type JobTag struct {
|
|
ID string `json:"id" db:"id"`
|
|
TagType string `json:"tagType" db:"tag_type"`
|
|
TagName string `json:"tagName" db:"tag_name"`
|
|
}
|