d4f79307df4219582eb2a60611f3b8cd7fcc8ee5
[mono.git] / mcs / class / corlib / System.Runtime.CompilerServices / CustomConstantAttribute.cs
1 //
2 // System.Runtime.CompilerServices.CustomConstantAttribute.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Copyright, Ximian Inc.
7
8 using System;
9
10 namespace System.Runtime.CompilerServices {
11
12         [AttributeUsage (AttributeTargets.Class, Inherited=false)] 
13         [Serializable]
14         public abstract class CustomConstantAttribute : Attribute
15         {
16                 protected CustomConstantAttribute ()
17                 {
18                 }
19
20                 public abstract object Value { get; }
21         }
22 }