15 lines
295 B
C#
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}";
|
|
}
|
|
}
|
|
}
|
|
} |