From 57acb1d65244abd49e6996a8e4ef773ca0a18da6 Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Sun, 29 Aug 2021 23:29:57 +0100 Subject: [PATCH] feat(*): Add base Factory class --- FileRepository/Factory.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 FileRepository/Factory.cs diff --git a/FileRepository/Factory.cs b/FileRepository/Factory.cs new file mode 100644 index 0000000..1cb0843 --- /dev/null +++ b/FileRepository/Factory.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace FileRepository +{ + /// + /// A factory to enable consumers of this package to easily get a specific type of repository. + /// + public class Factory + { + } +}