watchyourlan/pkg/models/models.go
2022-11-18 17:13:22 +07:00

27 lines
340 B
Go

package models
type Host struct {
Id uint16
Name string
Ip string
Mac string
Hw string
Date string
Known uint16
Now uint16
}
type Conf struct {
Iface string
DbPath string
GuiIP string
GuiPort string
Timeout int
ShoutUrl string
Theme string
}
type GuiData struct {
Config Conf
Hosts []Host
}