2023-06-03 02:07:30 +00:00
|
|
|
using EntityFrameworkCore.BootKit;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Repository;
|
|
|
|
|
|
|
|
|
|
public class MyDatabaseSettings : DatabaseSettings
|
|
|
|
|
{
|
|
|
|
|
public string[] Assemblies { get; set; }
|
|
|
|
|
public DbConnectionSetting MongoDb { get; set; }
|
2023-06-11 23:46:02 +00:00
|
|
|
public DbConnectionSetting Agent { get; set; }
|
2023-06-03 02:07:30 +00:00
|
|
|
}
|