summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/VisualElementChangedEventArgs.cs
blob: de7c7e5d969fbab3fc775d94df4769a9ecf66f59 (plain)
1
2
3
4
5
6
7
8
9
namespace Xamarin.Forms.Platform.Android
{
	public class VisualElementChangedEventArgs : ElementChangedEventArgs<VisualElement>
	{
		public VisualElementChangedEventArgs(VisualElement oldElement, VisualElement newElement) : base(oldElement, newElement)
		{
		}
	}
}