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

12 lines
180 B
Go

package models
import (
"encoding/xml"
)
type Attribute struct {
XMLName xml.Name `xml:"Attribute"`
Name string `xml:"Name"`
Value string `xml:"Value"`
}