12 lines
218 B
Go
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"`
|
||
|
}
|