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

namespace Xamarin.Forms
{
	internal class ChildCollectionChangedEventArgs : EventArgs
	{
		public ChildCollectionChangedEventArgs(NotifyCollectionChangedEventArgs args)
		{
			Args = args;
		}

		public NotifyCollectionChangedEventArgs Args { get; private set; }
	}
}