mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
15 lines
363 B
Go
15 lines
363 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Pledge struct {
|
||
|
PledgeID int64 `sql:",pk"`
|
||
|
PatronID int64
|
||
|
CreatedAt time.Time
|
||
|
DeclinedSince time.Time
|
||
|
AmountCents int
|
||
|
TotalHistoricalAmountCents int
|
||
|
OutstandingPaymentAmountCents int
|
||
|
IsPaused bool
|
||
|
}
|