Files
plcopenxmlbuilder/models/watchdog.go
T
2026-08-28 17:59:35 +02:00

12 lines
197 B
Go

package models
import (
"encoding/xml"
)
type Watchdog struct {
XMLName xml.Name `xml:"Watchdog"`
Enabled bool `xml:"Enabled,attr"`
TimeUnit string `xml:"TimeUnit,attr"`
}