Files
netmaker/models/dnsEntry.go
T
2021-04-26 23:39:15 -04:00

9 lines
242 B
Go

//TODO: Either add a returnNetwork and returnKey, or delete this
package models
type DNSEntry struct {
Address string `json:"address" bson:"address"`
Name string `json:"name" bson:"name"`
Network string `json:"network" bson:"network"`
}