加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
AppSettings.cs 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
zhangxinya 提交于 2020-06-17 16:46 . first add
// -----------------------------------------------------------------------
// <copyright file="AppSettings.cs" company="Kengic">
// Copyright (c) Kengic. All rights reserved.
// </copyright>
// -----------------------------------------------------------------------
namespace Kengic.Identity.API
{
/// <summary> An application settings. </summary>
public class AppSettings
{
/// <summary> Gets or sets the MVC client. </summary>
/// <value> The MVC client. </value>
public string MvcClient { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this object use customization data.
/// </summary>
/// <value> True if use customization data, false if not. </value>
public bool UseCustomizationData { get; set; }
/// <summary> Gets or sets the initial password. </summary>
/// <value> The initial password. </value>
public string InitialPassword { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this object use customization data.
/// </summary>
/// <value> True if use customization data, false if not. </value>
public bool UpdateMenu { get; set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化