fin-check-api/db/account.go

13 lines
201 B
Go
Raw Normal View History

2024-08-01 23:02:55 +02:00
package db
import "gorm.io/gorm"
// Account can be either card or wallet
type Account struct {
gorm.Model
Name string
Value uint64
HaveCreditLine bool
CreditLine uint64
}