package common type ErrorResponse struct { Error string `json:"error"` } type MessageResponse struct { Message string `json:"message"` } type PaginatedResponse struct { Items any `json:"items"` Total int64 `json:"total"` Page int `json:"page"` PerPage int `json:"per_page"` TotalPages int `json:"total_pages"` }