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

11 lines
136 B
Go
Raw Normal View History

2023-07-19 11:47:46 +02:00
package domain
import "time"
type Notification struct {
BlockHash string
Tx string
Amount float64
DoneAt time.Time
}