btc-pay-checker/internal/domain/notification.go

11 lines
136 B
Go

package domain
import "time"
type Notification struct {
BlockHash string
Tx string
Amount float64
DoneAt time.Time
}