Files
toutoukan/model/systemmodel/msgsend.go

10 lines
180 B
Go
Raw Normal View History

package systemmodel
type MsgSend struct {
Username string `json:"username"`
Msg struct {
Type string `json:"type"`
Content string `json:"content"`
} `json:"msg"`
}