7 lines
103 B
Go
7 lines
103 B
Go
|
package common
|
||
|
|
||
|
type UserInfo struct {
|
||
|
ID uint `json:"id" form:"id"`
|
||
|
Name string `json:"name"`
|
||
|
}
|