ab.go 441 B

123456789101112131415161718
  1. package api
  2. import "github.com/lejianwen/rustdesk-api/model"
  3. type AbList struct {
  4. Peers []*model.AddressBook `json:"peers,omitempty"`
  5. Tags []string `json:"tags,omitempty"`
  6. TagColors string `json:"tag_colors,omitempty"`
  7. }
  8. type SharedProfilesPayload struct {
  9. Guid string `json:"guid"`
  10. Name string `json:"name"`
  11. Owner string `json:"owner"`
  12. Note string `json:"note"`
  13. Rule int `json:"rule"`
  14. }