BotSharp/src/Infrastructure/BotSharp.Core/Repository/MyDatabaseSettings.cs

10 lines
291 B
C#
Raw Normal View History

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; }
public DbConnectionSetting BotSharp { get; set; }
2023-06-03 02:07:30 +00:00
}