10 lines
180 B
Go
10 lines
180 B
Go
package systemmodel
|
|
|
|
type MsgSend struct {
|
|
Username string `json:"username"`
|
|
Msg struct {
|
|
Type string `json:"type"`
|
|
Content string `json:"content"`
|
|
} `json:"msg"`
|
|
}
|