oc-lib/graphic_element.go

12 lines
218 B
Go
Raw Normal View History

2024-07-16 10:56:36 +02:00
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"`
}