blt/web/forms/benchmark.go

8 lines
230 B
Go
Raw Normal View History

2024-05-29 09:11:13 -04:00
package forms
type BenchmarkForm struct {
Name string `form:"benchmark_name" validate:"required"`
ScoringType string `form:"benchmark_scoring" validate:"required"`
Description string `form:"benchmark_description"`
}