16 lines
No EOL
347 B
C#
16 lines
No EOL
347 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
namespace PhoenixLib.DAL.MongoDB
|
|
{
|
|
public class MongoConfiguration
|
|
{
|
|
public string Endpoint { get; set; }
|
|
|
|
public short Port { get; set; }
|
|
public string DatabaseName { get; set; }
|
|
|
|
public override string ToString() => $"mongodb://{Endpoint}:{Port}";
|
|
}
|
|
} |