Initial commit
[mono.git] / mcs / class / referencesource / mscorlib / system / runtime / compilerservices / scopelessenumattribute.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6 namespace System.Runtime.CompilerServices
7 {
8 [Serializable]
9 [AttributeUsage(AttributeTargets.Enum)]
10     public sealed class ScopelessEnumAttribute : Attribute
11     {
12         public ScopelessEnumAttribute()
13         {}
14     }
15 }