mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-01 01:58:39 -04:00
- Retro-compatible change, `host` field still works - Documentation updated to use `owner` field - Code updated to use owner variable name
20 lines
454 B
Go
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
|
|
Owner string
|
|
Provider string
|
|
IPVersion string
|
|
Status string
|
|
CurrentIP string
|
|
PreviousIPs string
|
|
}
|