registry.go 273 B

123456789101112131415
  1. package rpcs
  2. // device register args
  3. type ArgsDeviceRegister struct {
  4. ProductKey string
  5. DeviceCode string
  6. DeviceVersion string
  7. }
  8. // device update args
  9. type ArgsDeviceUpdate struct {
  10. DeviceIdentifier string
  11. DeviceName string
  12. DeviceDescription string
  13. }