[reflection] Coop handles icalls in System.Reflection and System.RuntimeTypeHandle...
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / ErrorItem.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4
5 namespace System.Activities.Presentation.View
6 {
7     class ErrorItem : ContextItem
8     {
9         public string Message
10         { get; set; }
11
12         public string Details
13         { get; set; }
14
15         public override Type ItemType
16         {
17             get
18             {
19                 return typeof(ErrorItem);
20             }
21         }
22     }
23 }