Files
Creek.FileRepository/FileRepository/Factory.cs
T
2021-08-29 23:29:57 +01:00

14 lines
273 B
C#

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