gin-example/common/vo/vo.go

9 lines
154 B
Go
Raw Normal View History

2023-09-14 06:49:47 +00:00
package vo
type TransferRequest struct {
SourceUserId int
TargetAccountNumber string
TargetAmount float64
TargetCurrency string
}