summaryrefslogtreecommitdiff
path: root/src/Notepad/Infrastructure/Core/ISpecification.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Notepad/Infrastructure/Core/ISpecification.cs')
-rw-r--r--src/Notepad/Infrastructure/Core/ISpecification.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Notepad/Infrastructure/Core/ISpecification.cs b/src/Notepad/Infrastructure/Core/ISpecification.cs
new file mode 100644
index 0000000..c61d8b9
--- /dev/null
+++ b/src/Notepad/Infrastructure/Core/ISpecification.cs
@@ -0,0 +1,5 @@
+namespace Notepad.Infrastructure.Core {
+ public interface ISpecification<T> {
+ bool IsSatisfiedBy(T item);
+ }
+} \ No newline at end of file