Files
rustdesk-api/http/response/api/ab.go
2025-02-12 16:07:51 +08:00

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"`
}