blob: 16fe53498a868e873f465af26ef145bc27693a7d [file] [log] [blame]
syntax = "proto3";
option java_package = "org.onosproject.grpc.net.models";
package Link;
import "ConnectPointProto.proto";
import "LinkEnums.proto";
message LinkDescription {
ConnectPoint.ConnectPoint src = 1;
ConnectPoint.ConnectPoint dst = 2;
Link.LinkType type = 3;
map<string, string> annotations = 4;
}