Test yookassa callback

This commit is contained in:
2026-03-14 15:47:55 +03:00
parent 970e64745b
commit e4bfb49f21
2 changed files with 27 additions and 2 deletions

View File

@@ -1 +1,18 @@
package orm
import "gorm.io/gorm"
type Payout struct {
gorm.Model
User User
Description string
PayoutID string
Type string
AccountNumber string
Amount float32
Currency string
Status string
Test bool
}