summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ChildCollectionChangedEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/ChildCollectionChangedEventArgs.cs')
-rw-r--r--Xamarin.Forms.Core/ChildCollectionChangedEventArgs.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/ChildCollectionChangedEventArgs.cs b/Xamarin.Forms.Core/ChildCollectionChangedEventArgs.cs
new file mode 100644
index 00000000..3c5e946a
--- /dev/null
+++ b/Xamarin.Forms.Core/ChildCollectionChangedEventArgs.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file