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

namespace Xamarin.Forms
{
	public abstract class ModalEventArgs : EventArgs
	{
		protected ModalEventArgs(Page modal)
		{
			Modal = modal;
		}

		public Page Modal { get; private set; }
	}
}