2024-01-13 21:17:40 +00:00
|
|
|
namespace BotSharp.Plugin.SqlHero.Settings;
|
|
|
|
|
|
2024-01-18 11:30:28 +00:00
|
|
|
public class SqlDriverSetting
|
2024-01-13 21:17:40 +00:00
|
|
|
{
|
|
|
|
|
public string MySqlConnectionString { get; set; }
|
2024-07-16 02:10:36 +00:00
|
|
|
public string SqlServerConnectionString { get; set; }
|
|
|
|
|
public string SqlLiteConnectionString { get; set; }
|
2024-01-13 21:17:40 +00:00
|
|
|
}
|