blt/models/benchmark.go

13 lines
140 B
Go
Raw Normal View History

package models
import (
"gorm.io/gorm"
)
type Benchmark struct {
gorm.Model
Name string
ScoringType string
Description string
}