aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/Descriptors/FieldMappingAttribute.cs
blob: 13e8be1ecce14a3777b826a889b31321c7a381ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Text;

namespace Google.ProtocolBuffers.Descriptors {

  /// <summary>
  /// Defined specifically for the <see cref="FieldType" /> enumeration,
  /// this allows each field type to specify the mapped type and wire type.
  /// </summary>
  [AttributeUsage(AttributeTargets.Field)]
  internal class FieldMappingAttribute : Attribute {
    internal FieldMappingAttribute(MappedType mappedType, WireFormat.WireType wireType) {
      MappedType = mappedType;
      WireType = wireType;
    }

    internal MappedType MappedType { get; private set; }
    internal WireFormat.WireType WireType { get; private set; }
  }
}