зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
320 B
C#
15 строки
320 B
C#
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; }
|
|
}
|
|
} |