2001-01-04 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / class / corlib / System / TODOAttribute.cs
1 //
2 // TODOAttribute.cs
3 //
4 // Author:
5 //   Ravi Pratap (ravi@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System {
11
12         /// <summary>
13         ///   The TODO attribute is used to flag all incomplete bits in our class libraries
14         /// </summary>
15         ///
16         /// <remarks>
17         ///   Use this to decorate any element which you think is not complete
18         /// </remarks>
19         [AttributeUsage (AttributeTargets.All)]
20         internal class MonoTODOAttribute : Attribute {
21
22                 // No methods.
23         }
24 }