rafaelturon/blockchain-investments

View on GitHub
src/Blockchain.Investments.Core/Infrastructure/AppConfig.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace Blockchain.Investments.Core.Infrastructure
{
    public class AppConfig
    {
        public AppConfig()
        {
            // Set default value.
            MONGOLAB_URI = "mongodb://localhost:27017";
        }
        public string MONGOLAB_URI { get; set; }
    }
}