aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/ProtocolBuffers.Test/SerializableAttribute.cs
blob: 0553762bcfdc02d3d96485db59f8522fbef7e8eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#if NOSERIALIZABLE && !COMPACT_FRAMEWORK

namespace System
{
    [AttributeUsage(AttributeTargets.Class)]
    public class SerializableAttribute : Attribute
    {
        public SerializableAttribute () : base() { }
    }
}

#endif