Files
2026-08-28 17:59:35 +02:00

15 lines
191 B
Go

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