forked from ebhomengo/niki
16 lines
377 B
Go
16 lines
377 B
Go
package param
|
|
|
|
import (
|
|
"git.gocasts.ir/ebhomengo/niki/domain/wallet/entity"
|
|
)
|
|
|
|
type CreateTransactionRequest struct {
|
|
UserID uint64 `json:"user_id"`
|
|
Amount float64 `json:"amount"`
|
|
Currency entity.Currency `json:"currency"`
|
|
ActionType entity.TransactionType `json:"action_type"`
|
|
}
|
|
|
|
type InsertTransactionResponse struct {
|
|
}
|