Files
weddingapi/Config/MongoDbConfig.cs
2022-01-23 19:20:13 +01:00

15 lines
295 B
C#

namespace weddingapi.Config
{
class MongoDbConfig
{
public string Host { get; set; }
public int Port { get; set; }
public string ConnectionString {
get
{
return $"mongodb://{Host}:{Port}";
}
}
}
}