master
1namespace Notepad.Infrastructure.Core {
2    public interface ISpecification<T> {
3        bool IsSatisfiedBy(T item);
4    }
5}