Files
chatservice_concept/api/user.go
2024-12-29 19:48:41 -05:00

11 lines
122 B
Go

package api
type User struct {
ID int64 `json:"id"`
Name string `json:"name"`
}
type UserPayload struct {
*User
}