2023-06-03 02:07:30 +00:00
|
|
|
namespace BotSharp.Core.Repository;
|
|
|
|
|
|
|
|
|
|
public class MyDatabaseSettings : DatabaseSettings
|
|
|
|
|
{
|
|
|
|
|
public string[] Assemblies { get; set; }
|
2023-08-10 04:53:22 +00:00
|
|
|
public string FileRepository { get; set; }
|
2023-06-03 02:07:30 +00:00
|
|
|
public DbConnectionSetting MongoDb { get; set; }
|
2023-07-21 01:55:40 +00:00
|
|
|
public DbConnectionSetting BotSharp { get; set; }
|
2023-06-03 02:07:30 +00:00
|
|
|
}
|