招聘后台
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
550 B

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; }
}
}