[runtime] Fix corlib out of date error with disabled COM
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Metadata / ActivityDelegateArgumentMetadata.cs
1 //----------------------------------------------------------------
2 // <copyright company="Microsoft Corporation">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //----------------------------------------------------------------
6
7 namespace System.Activities.Presentation.Metadata
8 {
9     internal class ActivityDelegateArgumentMetadata
10     {
11         public string Name
12         {
13             get;
14             set;
15         }
16
17         public ActivityDelegateArgumentDirection Direction
18         {
19             get;
20             set;
21         }
22
23         public Type Type
24         {
25             get;
26             set;
27         }
28     }
29 }