mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-11-30 00:53:15 +00:00
18 lines
441 B
Go
18 lines
441 B
Go
package api
|
|
|
|
import "github.com/lejianwen/rustdesk-api/model"
|
|
|
|
type AbList struct {
|
|
Peers []*model.AddressBook `json:"peers,omitempty"`
|
|
Tags []string `json:"tags,omitempty"`
|
|
TagColors string `json:"tag_colors,omitempty"`
|
|
}
|
|
|
|
type SharedProfilesPayload struct {
|
|
Guid string `json:"guid"`
|
|
Name string `json:"name"`
|
|
Owner string `json:"owner"`
|
|
Note string `json:"note"`
|
|
Rule int `json:"rule"`
|
|
}
|