mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-22 22:36:09 +01:00
14 lines
255 B
Go
14 lines
255 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
// TransactionEntries : Transaction Entries Model
|
|
type TransactionEntries struct {
|
|
UserID uint
|
|
InvoiceID uint
|
|
CreditAccountID uint
|
|
DebitAccountID uint
|
|
Amount uint64
|
|
CreatedAt time.Time
|
|
}
|