summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IExpressionSearch.cs
blob: e5d4c26f1db8221ef70484b21294803ddf4a4881 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;
using System.Linq.Expressions;

namespace Xamarin.Forms
{
	internal interface IExpressionSearch
	{
		List<T> FindObjects<T>(Expression expression) where T : class;
	}
}