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

11 строки
243 B
C#

using System.Collections.ObjectModel;
namespace Xamarin.Forms
{
internal class ElementCollection<T> : ObservableWrapper<Element, T> where T : Element
{
public ElementCollection(ObservableCollection<Element> list) : base(list)
{
}
}
}