summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ModalPoppedEventArgs.cs
blob: 3c17f009eef463c62f74776f90c03de87fa10d4d (plain)
1
2
3
4
5
6
7
8
9
namespace Xamarin.Forms
{
	public class ModalPoppedEventArgs : ModalEventArgs
	{
		public ModalPoppedEventArgs(Page modal) : base(modal)
		{
		}
	}
}