maui-linux/Xamarin.Forms.Core/ListProxyChangedEventArgs.cs

17 строки
407 B
C#

using System;
using System.Collections.Generic;
namespace Xamarin.Forms
{
public class ListProxyChangedEventArgs : EventArgs
{
public IReadOnlyCollection<object> OldList { get; }
public IReadOnlyCollection<object> NewList { get; }
public ListProxyChangedEventArgs(IReadOnlyCollection<object> oldList, IReadOnlyCollection<object> newList)
{
OldList = oldList;
NewList = newList;
}
}
}