2023-01-02 20:02:50 +01:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
type ProtocolStructure struct {
|
|
|
|
Metadata DOPMeta
|
2023-01-04 13:38:16 +01:00
|
|
|
Structure []*Field
|
2023-01-02 20:02:50 +01:00
|
|
|
DefaultValues []DefaultValue
|
|
|
|
JavaScript string
|
|
|
|
}
|
2023-04-11 16:05:24 +02:00
|
|
|
|
|
|
|
type ProtocolReferencer interface {
|
|
|
|
GetProtocol() *ProtocolStructure
|
|
|
|
SetProtocol(prot *ProtocolStructure)
|
|
|
|
}
|