11 lines
258 B
Go
11 lines
258 B
Go
package transaction
|
|
|
|
import (
|
|
"nutfactory.org/Matrix/entities/event"
|
|
)
|
|
|
|
type Transaction struct {
|
|
Id string `json:"id,omitempty"`
|
|
PDUS map[string]event.Event `json:"pdus,omitempty"`
|
|
EDUS []event.EDU `json:"edus,omitempty"`
|
|
}
|