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

15 lines
196 B
Go

package models
import (
"encoding/xml"
)
type Fbd struct {
XMLName xml.Name `xml:"fbd"`
Scaling Scaling `xml:"scaling"`
}
func (fbd *Fbd) Default() {
fbd.Scaling.Default()
}