Files
BeWoAdmin/BeWoFileExporter/Connection.cs
2021-04-07 17:08:46 +02:00

27 lines
642 B
C#

namespace BeWoFileExporter
{
public class Connection
{
public string Server { get; set; }
public string Uid { get; set; }
public string Database { get; set; }
public string Password { get; set; }
public Connection(string server, string uid, string database, string password)
{
Server = server;
Uid = uid;
Database = database;
Password = password;
}
public string ToMySqlConnectionString()
{
return $"SERVER={Server};UID={Uid};PASSWORD={Password};DATABASE={Database};";
}
}
}