[reflection] Coop handles icalls in System.Reflection and System.RuntimeTypeHandle...
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / ClipboardData.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4
5 namespace System.Activities.Presentation
6 {
7     using System.Collections.Generic;
8     using System.Diagnostics.CodeAnalysis;
9     using System.Runtime;
10
11     [Serializable]
12     public class ClipboardData
13     {
14         [SuppressMessage(FxCop.Category.Usage, FxCop.Rule.CollectionPropertiesShouldBeReadOnly,
15             Justification = "The setter of this property is used several places.")]
16         public List<object> Data { get; set;  }
17
18         [SuppressMessage(FxCop.Category.Usage, FxCop.Rule.CollectionPropertiesShouldBeReadOnly,
19             Justification = "The setter of this property is used several places.")]
20         public List<object> Metadata { get; set;  }
21
22         public string Version { get; set; }
23     }
24
25
26 }