1// Protocol Buffers - Google's data interchange format 2// Copyright 2008 Google Inc. All rights reserved. 3// 4// Use of this source code is governed by a BSD-style 5// license that can be found in the LICENSE file or at 6// https://developers.google.com/open-source/licenses/bsd 7 8// Author: liujisi@google.com (Pherl Liu) 9 10syntax = "proto2"; 11 12package protobuf_unittest_import_proto2; 13 14option csharp_namespace = "Google.Protobuf.TestProtos.Proto2"; 15 16message PublicImportMessage { 17 optional int32 e = 1; 18} 19