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