mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 14:18:12 +00:00
22 lines
485 B
Go
22 lines
485 B
Go
package models
|
|
|
|
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"`
|
|
} |