Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NSObjectFacade.cs « Xamarin.PropertyEditing.Mac - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 605c9630d20d22877a1868a032ac6cdfd73ba4b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using Foundation;

namespace Xamarin.PropertyEditing.Mac
{
	internal class NSObjectFacade
		: NSObject
	{
		public NSObjectFacade (object obj)
		{
			Target = obj;
		}

		public object Target
		{
			get;
		}
	}
}