8 lines
142 B
Go
8 lines
142 B
Go
package data
|
|
|
|
type Remote struct {
|
|
Id string `json:"id"`
|
|
Title string `json:"title"`
|
|
Commands []Command `json:"commands"`
|
|
}
|