refactor(models): Rename Request model

This commit is contained in:
2024-12-03 18:27:11 +01:00
parent 3345571bd8
commit 670290b60b
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
package models
type Contract struct {
type ContractRequest struct {
Runners []Runner `json:"runners"`
Locale string `json:"locale" enums:"en,de"`
}