using System;
using System.Collections.Generic;
using System.Text;
namespace MadRunFabric.Common.Options
{
///
/// 关系型数据库配置 PostgreSQL
///
public class DbOptions
{
///
/// 数据库连接字符串
///
public string ConnectionString { get; set; }
///
/// 实体程序集名称
///
public string ModelAssemblyName { get; set; }
}
}