Files
blt/models/result.go
T
2025-10-22 00:58:32 -04:00

21 lines
303 B
Go

package models
import (
"gorm.io/gorm"
)
type Result struct {
gorm.Model
AverageScore float32
MinimumScore float32
MaximumScore float32
// belongs to Benchmark
BenchmarkProfileID int
BenchmarkProfile BenchmarkProfile
// belongs to Test
TestID int
Test Test
}