mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 15:29:26 +00:00
16 lines
508 B
Go
16 lines
508 B
Go
package structs
|
|
|
|
type PanelJSON struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
AspectRatio string `json:"aspectRatio"`
|
|
Macros map[string]string `json:"macros"`
|
|
}
|
|
|
|
type PanelInfo struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
AspectRatio string `json:"aspectRatio"`
|
|
Macros map[string]string `json:"macros"`
|
|
Thumb string `json:"thumb"`
|
|
}
|