summaryrefslogtreecommitdiff
path: root/src/Notepad/Infrastructure/Core/ISpecification.cs
blob: c61d8b928e8f6e12a7671ddd972e7a446f704829 (plain)
1
2
3
4
5
namespace Notepad.Infrastructure.Core {
    public interface ISpecification<T> {
        bool IsSatisfiedBy(T item);
    }
}