Ocean/ICCC/Scheme/Listener.go
2015-06-17 17:44:52 +02:00

10 lines
263 B
Go

package Scheme
// Type for the listener entries at the database.
type Listener struct {
Channel string `bson:"Channel"`
Command string `bson:"Command"`
IsActive bool `bson:"IsActive"`
IPAddressPort string `bson:"IPAddressPort"`
}