2003-08-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / ComImportAttribute.cs
1 //
2 // System.Runtime.InteropServices.ComImportAttribute.cs
3 //
4 // Name: Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc.
7 //
8
9 using System;
10
11 namespace System.Runtime.InteropServices {
12
13         [AttributeUsage (AttributeTargets.Class |
14                          AttributeTargets.Interface)]
15         public sealed class ComImportAttribute : Attribute
16         {
17                 public ComImportAttribute ()
18                 {
19                 }
20         }
21 }