2017-10-21 13:32:06 -04:00
|
|
|
namespace ACE.Common
|
|
|
|
|
{
|
|
|
|
|
public class DatabaseConfiguration
|
|
|
|
|
{
|
2023-12-21 14:15:38 -05:00
|
|
|
public MySqlConfiguration Authentication { get; set; } = new MySqlConfiguration()
|
|
|
|
|
{
|
|
|
|
|
Host = "127.0.0.1",
|
|
|
|
|
Port = 3306,
|
|
|
|
|
Database = "ace_auth",
|
|
|
|
|
Username = "root",
|
|
|
|
|
Password = ""
|
|
|
|
|
};
|
2017-10-21 13:32:06 -04:00
|
|
|
|
2023-12-21 14:15:38 -05:00
|
|
|
public MySqlConfiguration Shard { get; set; } = new MySqlConfiguration()
|
|
|
|
|
{
|
|
|
|
|
Host = "127.0.0.1",
|
|
|
|
|
Port = 3306,
|
|
|
|
|
Database = "ace_shard",
|
|
|
|
|
Username = "root",
|
|
|
|
|
Password = ""
|
|
|
|
|
};
|
2017-10-21 13:32:06 -04:00
|
|
|
|
2023-12-21 14:15:38 -05:00
|
|
|
public MySqlConfiguration World { get; set; } = new MySqlConfiguration()
|
|
|
|
|
{
|
|
|
|
|
Host = "127.0.0.1",
|
|
|
|
|
Port = 3306,
|
|
|
|
|
Database = "ace_world",
|
|
|
|
|
Username = "root",
|
|
|
|
|
Password = ""
|
|
|
|
|
};
|
2017-10-21 13:32:06 -04:00
|
|
|
}
|
|
|
|
|
}
|