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 + { + } +}