Bookholder-API/database/models.go

26 lines
369 B
Go
Raw Normal View History

2024-12-20 00:52:27 +00:00
package database
import "time"
type Account struct {
ID uint
Name string
Kind string
}
type Transaction struct {
ID uint
Amount float32
Debit bool
OffsetAccount uint
Account uint
Date time.Time
2024-12-20 00:52:27 +00:00
Description string
}
type User struct {
ID uint
Name string
Password string
}