19 строки
283 B
Go
19 строки
283 B
Go
package models
|
|
|
|
import "rsgit.ru/rsmon/rsmon/app/models/concerns"
|
|
|
|
// Payment provides functionality.
|
|
type Payment struct {
|
|
concerns.Model
|
|
|
|
AccountID int64 `json:"account_id"`
|
|
Account User `json:"-"`
|
|
|
|
Kind string
|
|
ExtID string
|
|
Amount int
|
|
|
|
concerns.Timestamped
|
|
Audited
|
|
}
|