intclient.go 1008 B

123456789101112131415161718
  1. package models
  2. type IntClient struct {
  3. ClientID string `json:"clientid" bson:"clientid"`
  4. PrivateKey string `json:"privatekey" bson:"privatekey"`
  5. PublicKey string `json:"publickey" bson:"publickey"`
  6. AccessKey string `json:"accesskey" bson:"accesskey"`
  7. Address string `json:"address" bson:"address"`
  8. Address6 string `json:"address6" bson:"address6"`
  9. Network string `json:"network" bson:"network"`
  10. ServerPublicEndpoint string `json:"serverpublicendpoint" bson:"serverpublicendpoint"`
  11. ServerAPIPort string `json:"serverapiport" bson:"serverapiport"`
  12. ServerPrivateAddress string `json:"serverprivateaddress" bson:"serverprivateaddress"`
  13. ServerWGPort string `json:"serverwgport" bson:"serverwgport"`
  14. ServerGRPCPort string `json:"servergrpcport" bson:"servergrpcport"`
  15. ServerKey string `json:"serverkey" bson:"serverkey"`
  16. IsServer string `json:"isserver" bson:"isserver"`
  17. }