niki/param/benefactor/address/get.go

19 lines
329 B
Go
Raw Permalink Normal View History

package addressparam
import "git.gocasts.ir/ebhomengo/niki/entity"
type GetAddressByIDRequest struct {
ID uint
}
type GetAddressByIDResponse struct {
Address *entity.Address
}
2024-06-01 00:29:11 +00:00
type GetAddressRequest struct {
BenefactorID uint
AddressID uint
}
type GetAddressResponse struct {
Address entity.Address `json:"address"`
}