mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-06-08 00:56:58 +03:00
9 lines
233 B
Go
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"
|