22 lines
444 B
Protocol Buffer
22 lines
444 B
Protocol Buffer
syntax = "proto3";
|
|
import "stationLayoutGraphics.proto";
|
|
|
|
package relayCabinetGraphicData;
|
|
option go_package = "./ats/verify/protos/graphicData";
|
|
|
|
message RelayCabinetGraphicStorage {
|
|
graphicData.Canvas canvas = 1;
|
|
repeated RelayCabinet relayCabinets = 2;
|
|
repeated Relay relays = 3;
|
|
}
|
|
|
|
message RelayCabinet {
|
|
graphicData.CommonInfo common = 1;
|
|
string code = 2;
|
|
}
|
|
|
|
message Relay {
|
|
graphicData.CommonInfo common = 1;
|
|
string code = 2;
|
|
}
|