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.
24 lines
526 B
24 lines
526 B
2 years ago
|
using System;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Znyc.Admin.AspNetCore.ViewModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据库连接返回结果实体
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public class DBConnResult
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 未加密字符串
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string ConnStr { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库名称
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string EncryptConnStr { get; set; }
|
||
|
}
|
||
|
}
|