mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-24 06:25:47 +00:00
14 lines
271 B
Protocol Buffer
14 lines
271 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.der;
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/der/types";
|
|
|
|
message DER {
|
|
|
|
string zigbeeID = 1;
|
|
string dirigeraID = 2;
|
|
string dirigeraMAC = 3;
|
|
string plmntAddress = 4;
|
|
string liquidAddress = 5;
|
|
}
|