using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUTS.Domain.Application
{
///
/// 数据库连接串实体
///
public class DBCofinStrModel
{
///
/// iD
///
public int ID { get; set; }
///
/// 数据库连接串
///
public string CofinStr { get; set; }
}
}