summaryrefslogtreecommitdiff
path: root/src/Notepad/Domain/FileSystem/IFilePath.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Notepad/Domain/FileSystem/IFilePath.cs')
-rw-r--r--src/Notepad/Domain/FileSystem/IFilePath.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Notepad/Domain/FileSystem/IFilePath.cs b/src/Notepad/Domain/FileSystem/IFilePath.cs
new file mode 100644
index 0000000..094907a
--- /dev/null
+++ b/src/Notepad/Domain/FileSystem/IFilePath.cs
@@ -0,0 +1,7 @@
+using System;
+
+namespace Notepad.Domain.FileSystem {
+ public interface IFilePath : IEquatable<IFilePath> {
+ string RawPathToFile();
+ }
+} \ No newline at end of file