summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-03-25 00:39:48 +0000
committerToby Vincent <tobyv13@gmail.com>2021-03-25 00:39:48 +0000
commit15d7e81b643fe2c1eba3530d6fcf8d83c02fa71d (patch)
tree1c521c098b9ba7e0840c1335b2a4b973a7a0a6e2
refactored project layout
-rw-r--r--IFileReader.cs7
-rw-r--r--IFileWriter.cs7
2 files changed, 14 insertions, 0 deletions
diff --git a/IFileReader.cs b/IFileReader.cs
new file mode 100644
index 0000000..8fd9608
--- /dev/null
+++ b/IFileReader.cs
@@ -0,0 +1,7 @@
+namespace Graph.Interfaces
+{
+ public interface IFileReader
+ {
+ string[] Lines { get; }
+ }
+}
diff --git a/IFileWriter.cs b/IFileWriter.cs
new file mode 100644
index 0000000..92dd692
--- /dev/null
+++ b/IFileWriter.cs
@@ -0,0 +1,7 @@
+namespace Graph.Interfaces
+{
+ public interface IFileWriter
+ {
+ void WriteAllText(string content);
+ }
+} \ No newline at end of file