summaryrefslogtreecommitdiff
path: root/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/ICurrency.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/ICurrency.cs')
-rw-r--r--DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/ICurrency.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/ICurrency.cs b/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/ICurrency.cs
new file mode 100644
index 0000000..8f1afd4
--- /dev/null
+++ b/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/ICurrency.cs
@@ -0,0 +1,5 @@
+namespace DesignPatterns.Factory {
+ public interface ICurrency {
+ string Name { get; }
+ }
+} \ No newline at end of file