server-master/srcs/PhoenixLib.DAL.MongoDB/MongoConfiguration.cs
2026-02-10 18:21:30 +01:00

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}";
}
}