oc-lib/graphic_element.go
2024-07-16 11:05:11 +02:00

12 lines
218 B
Go

package oclib
type Coordinate struct {
x int
y int
}
type GraphicElement struct{
ID string `json:"ID" required:"true"`
style string `json:"style" required:"true"`
xy Coordinate `json:"xy" required:"true"`
}