summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ValueChangedEventArgs.cs
blob: 8ea718c45681df2cc333fbb6bcaf2b19df2e9535 (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 ValueChangedEventArgs : EventArgs
	{
		public ValueChangedEventArgs(double oldValue, double newValue)
		{
			OldValue = oldValue;
			NewValue = newValue;
		}

		public double NewValue { get; private set; }

		public double OldValue { get; private set; }
	}
}