24 lines
550 B
24 lines
550 B
2 years ago
|
using System;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Znyc.Recruitment.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; }
|
||
|
}
|
||
|
}
|