category_responses.go 160 Bytes
package responses

type CategoryResponse struct {
	Status  int        `json:"status"`
	Message string     `json:"message"`
	Data    interface{} `json:"data"`
}