using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation
{
///
/// 数据库
///
public class DataBase
{
///
/// sql server 数据库
///
public const string MsSql = "MsSql";
///
/// Elastric Serach 数据库
///
public const string Nest = "Nest";
}
}