You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
519 B
18 lines
519 B
using System.Collections.Generic;
|
|
using Znyc.Cloudcar.Admin.Commons.Enums;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Commons.Core.DataManager
|
|
{
|
|
public class ZnycDbOptions
|
|
{
|
|
/// <summary>
|
|
/// 默认数据库类型
|
|
/// </summary>
|
|
public DatabaseType DefaultDatabaseType { get; set; } = DatabaseType.SqlServer;
|
|
|
|
/// <summary>
|
|
/// 数据库连接配置
|
|
/// </summary>
|
|
public IDictionary<string, DbConnectionOptions> DbConnections { get; set; }
|
|
}
|
|
}
|