wfc-server/api/user_action_response.go

12 lines
130 B
Go

package api
import (
"wwfc/database"
)
type UserActionResponse struct {
User database.User
Success bool
Error string
}