struct.go 214 B

12345678910111213
  1. package device
  2. //Device represents Android device
  3. type Device struct {
  4. Serial string
  5. DeviceType string
  6. USB string
  7. Product string
  8. Model string
  9. Device string
  10. TransportID string
  11. }