Skip to content

Instantly share code, notes, and snippets.

@zleao
zleao / PortableMongoDBConfiguration.cs
Created July 11, 2020 14:38
Configuration class used in the portable mongodb solution
public enum DbLocation
{
Unknown,
Local,
Azure
}
public interface IMongoDbConfiguration
{
string DatabaseName { get; }