promotion_responses.go 198 Bytes
package responses

import "github.com/gofiber/fiber/v2"

type PromotionResponse struct {
	Status  int        `json:"status"`
	Message string     `json:"message"`
	Data    *fiber.Map `json:"data"`
}