Files
ddns-updater/internal/models/html.go
2023-06-16 09:14:43 +00:00

20 lines
454 B
Go

package models
// HTMLData is a list of HTML fields to be rendered.
// It is exported so that the HTML template engine can render it.
type HTMLData struct {
Rows []HTMLRow
}
// HTMLRow contains HTML fields to be rendered
// It is exported so that the HTML template engine can render it.
type HTMLRow struct {
Domain string
Host string
Provider string
IPVersion string
Status string
CurrentIP string
PreviousIPs string
}