contentfulvalidation/validator/vo.go
2023-09-13 14:01:54 +02:00

14 lines
280 B
Go

package validator
type SysType string
type ModelType string
type ModelID string
type MessageCode string
type ValidationResults map[ModelType]map[ModelID]*ValidationResult
type ModelTypeInfo struct {
ModelType ModelType `json:"modelType"`
Title string `json:"title"`
}