11 lines
277 B
C#
11 lines
277 B
C#
|
|
namespace JiShe.CollectBus;
|
|||
|
|
|
|||
|
|
public static class CollectBusDbProperties
|
|||
|
|
{
|
|||
|
|
public static string DbTablePrefix { get; set; } = "JiSheCollectBus";
|
|||
|
|
|
|||
|
|
public static string? DbSchema { get; set; } = null;
|
|||
|
|
|
|||
|
|
public const string MongoDbConnectionStringName = "Default";
|
|||
|
|
}
|