protobufs/device_metadata.proto
Ben Meadors f82e3208c9 Lint
2022-08-07 18:53:58 -05:00

22 lines
No EOL
427 B
Protocol Buffer

syntax = "proto3";
option java_package = "com.geeksville.mesh";
option optimize_for = LITE_RUNTIME;
option go_package = "github.com/meshtastic/gomeshproto";
option java_outer_classname = "DeviceMetadataProtos";
/*
* Device metadata response
*/
message DeviceMetadata {
/*
* Device firmware version string
*/
string firmware_version = 1;
/*
* Device state version
*/
uint32 device_state_version = 2;
}