Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Configs/BlueThinkConfig.cs

22 lines
543 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Configs
{
/// <summary>
/// 蓝鲸智库配置文件
/// </summary>
public class BlueThinkConfig
{
public string Area { get; set; }
public string Signcode { get; set; }
public string PublicKey { get; set; }
public string PrivateKey { get; set; }
public long RootId { get; set; }
public string Url { get; set; }
}
}