summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/DateChangedEventArgs.cs
blob: 8fbc803d9063f55ac8a82b25233c418976333b64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Xamarin.Forms
{
	public class DateChangedEventArgs : EventArgs
	{
		public DateChangedEventArgs(DateTime oldDate, DateTime newDate)
		{
			OldDate = oldDate;
			NewDate = newDate;
		}

		public DateTime NewDate { get; private set; }

		public DateTime OldDate { get; private set; }
	}
}