11 lines
136 B
Go
11 lines
136 B
Go
|
package domain
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Notification struct {
|
||
|
BlockHash string
|
||
|
Tx string
|
||
|
Amount float64
|
||
|
DoneAt time.Time
|
||
|
}
|