6 lines
104 B
Go
6 lines
104 B
Go
|
package validate
|
||
|
|
||
|
type CreateTypeParam struct {
|
||
|
Name string `json:"name" validate:"required,max=20"`
|
||
|
}
|