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