mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
25 lines
458 B
Go
25 lines
458 B
Go
package model
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type FilteredResponse struct {
|
|
Items interface{} `json:"items"`
|
|
Params
|
|
}
|
|
|
|
type ResponseFunc func(*gin.Context) *[]interface{}
|
|
|
|
type MessageResponse struct {
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type Params struct {
|
|
SortBy string `json:"sortBy"`
|
|
Embed string `json:"embed"`
|
|
Page int `json:"page"`
|
|
Rpp int `json:"rpp"`
|
|
TotalRecords int `json:"totalRecords"`
|
|
}
|