fin-check-api/db/debt.go
2024-08-03 15:49:58 +03:00

20 lines
217 B
Go

package db
import (
"time"
"gorm.io/gorm"
)
type Debt struct {
gorm.Model
CardID uint
Card *Card
Comment string
Value uint64
IOwe bool
Date time.Time
DateEnd time.Time
Finished bool
}