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