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 }