9 строки
157 B
C#
9 строки
157 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Xamarin.Forms
|
||
|
{
|
||
|
public interface IViewContainer<T> where T : VisualElement
|
||
|
{
|
||
|
IList<T> Children { get; }
|
||
|
}
|
||
|
}
|