summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/PropertyChangingEventArgs.cs
blob: 75c78994c7c858b3f0c246270c504c7f3ec6b0eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Xamarin.Forms
{
	public class PropertyChangingEventArgs : EventArgs
	{
		public PropertyChangingEventArgs(string propertyName)
		{
			PropertyName = propertyName;
		}

		public virtual string PropertyName { get; }
	}
}