7e04df6085153f55f8296226e3e7956bfe097298
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Model / BackPointer.cs
1 //----------------------------------------------------------------
2 // <copyright company="Microsoft Corporation">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //----------------------------------------------------------------
6
7 namespace System.Activities.Presentation.Model
8 {
9     internal class BackPointer : LinkBase
10     {
11         public BackPointer(ModelItem sourceVertex, ModelItem destinationVertex)
12             : base(sourceVertex, destinationVertex)
13         {
14         }
15
16         public BackPointer(string propertyName, ModelItem sourceVertex, ModelItem destinationVertex)
17             : base(propertyName, sourceVertex, destinationVertex)
18         {
19         }
20     }
21 }