8 lines
230 B
Go
8 lines
230 B
Go
|
package forms
|
||
|
|
||
|
type BenchmarkForm struct {
|
||
|
Name string `form:"benchmark_name" validate:"required"`
|
||
|
ScoringType string `form:"benchmark_scoring" validate:"required"`
|
||
|
Description string `form:"benchmark_description"`
|
||
|
}
|