1 #region Copyright notice and license 2 // Protocol Buffers - Google's data interchange format 3 // Copyright 2015 Google Inc. All rights reserved. 4 // 5 // Use of this source code is governed by a BSD-style 6 // license that can be found in the LICENSE file or at 7 // https://developers.google.com/open-source/licenses/bsd 8 #endregion 9 10 namespace Google.Protobuf 11 { 12 // Just a sample enum with positive and negative values to be used in tests. 13 internal enum SampleEnum 14 { 15 NegativeValue = -2, 16 None = 0, 17 PositiveValue = 3 18 } 19 } 20