wireguard-ui/model/wake_on_lan_host.go
2022-02-19 17:51:41 +09:00

9 lines
233 B
Go

package model
type WakeOnLanHost struct {
MacAddress string `json:"MacAddress"`
Name string `json:"Name"`
LatestIPAddress string `json:"LatestIPAddress"`
}
const WakeOnLanHostCollectionName = "wake_on_lan_hosts"