10 lines
291 B
C#
10 lines
291 B
C#
namespace BotSharp.Core.Repository;
|
|
|
|
public class MyDatabaseSettings : DatabaseSettings
|
|
{
|
|
public string[] Assemblies { get; set; }
|
|
public string FileRepository { get; set; }
|
|
public DbConnectionSetting MongoDb { get; set; }
|
|
public DbConnectionSetting BotSharp { get; set; }
|
|
}
|