8 lines
150 B
Go
8 lines
150 B
Go
package model
|
|
|
|
type LoginParam struct {
|
|
Account string `json:"account"`
|
|
ServerId string `json:"serverId"`
|
|
TimeStamp int64 `json:"timestamp"`
|
|
}
|