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: kenton@google.com (Kenton Varda) 9// Based on original Protocol Buffers design by 10// Sanjay Ghemawat, Jeff Dean, and others. 11// 12// A proto file which is imported by unittest_proto3.proto to test importing. 13 14syntax = "proto3"; 15 16package protobuf_unittest_import; 17 18option csharp_namespace = "Google.Protobuf.TestProtos"; 19 20// Test public import 21import public "csharp/protos/unittest_import_public_proto3.proto"; 22 23message ImportMessage { 24 int32 d = 1; 25} 26 27enum ImportEnum { 28 IMPORT_ENUM_UNSPECIFIED = 0; 29 IMPORT_FOO = 7; 30 IMPORT_BAR = 8; 31 IMPORT_BAZ = 9; 32} 33