2004-04-02 Dick Porter <dick@ximian.com>
[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)] [Serializable]
13         public abstract class CustomConstantAttribute : Attribute
14         {
15                 protected CustomConstantAttribute ()
16                 {
17                 }
18
19                 public abstract object Value { get; }
20         }
21 }