27 lines
642 B
C#
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};";
|
|
}
|
|
}
|
|
}
|