mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-25 06:55:46 +00:00
14 lines
245 B
Protocol Buffer
14 lines
245 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 plmntAddress = 2;
|
|
string liquidAddress = 3;
|
|
string metadataJson = 4;
|
|
|
|
}
|