service/library/validator/not_null_item.go

10 lines
135 B
Go

package validator
type NotNullItem interface {
ProvideNotNullValue() []*JsonParam
}
type NullableItem interface {
IsEmpty() bool
}