15 lines
238 B
Go
15 lines
238 B
Go
package db
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
// Card can be either card or wallet
|
|
type Card struct {
|
|
gorm.Model
|
|
Name string
|
|
Value uint64
|
|
HaveCreditLine bool
|
|
CreditLine uint64
|
|
UserID uint
|
|
User *User
|
|
}
|