8 lines
88 B
Go
8 lines
88 B
Go
|
|
package models
|
||
|
|
|
||
|
|
type Event struct {
|
||
|
|
Key string
|
||
|
|
Message string
|
||
|
|
Payment *Payment
|
||
|
|
}
|