mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
15 lines
207 B
Go
15 lines
207 B
Go
package filter
|
|
|
|
import "wallet-api/pkg/model"
|
|
|
|
type WalletFilter struct {
|
|
model.Params
|
|
BaseFilter
|
|
}
|
|
|
|
func NewWalletFilter(params model.Params) *WalletFilter {
|
|
return &WalletFilter{
|
|
Params: params,
|
|
}
|
|
}
|