fin-check-api/db/card.go

13 lines
195 B
Go
Raw Normal View History

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