24 lines
333 B
Go
24 lines
333 B
Go
package structs
|
|
|
|
type MachinesBody struct {
|
|
Location int
|
|
Whitelist []int
|
|
Blacklist []int
|
|
}
|
|
|
|
/*
|
|
type MachinesResponse struct {
|
|
Machines []Machine
|
|
}
|
|
|
|
type Machine struct {
|
|
PartName string
|
|
PartThumbnail string
|
|
Notes MachineNotes
|
|
}
|
|
|
|
type MachineNotes struct {
|
|
DisplayName string `json:"displayName"`
|
|
Ip string `json:"ip"`
|
|
} */
|