Files
sundynix-go/model/system/response/sys_user.go
T
2025-09-14 21:58:44 +08:00

10 lines
200 B
Go

package response
import "sundynix-go/model/system"
type LoginResponse struct {
User system.User `json:"user"`
Token string `json:"token"`
ExpiresAt int64 `json:"expiresAt"`
}