feat(*): Add base Factory class

This commit is contained in:
Josh Creek
2021-08-29 23:29:57 +01:00
parent ce31802a94
commit 57acb1d652
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace FileRepository
{
/// <summary>
/// A factory to enable consumers of this package to easily get a specific type of repository.
/// </summary>
public class Factory
{
}
}