Files
2026-03-19 00:09:25 +03:00

23 lines
310 B
Go

package orm
import (
"gorm.io/gorm"
)
type Payout struct {
gorm.Model
UserID uint
User User
Description string
IdempotenceKey string
PayoutID string
Type string
AccountNumber string
Amount float32
Currency string
Status string
Test bool
}