//
//
//
using ERP.Framework.Constants;
using ERP.Framework.Enum;
namespace ERP.Framework.Config
{
public class LogConfig
{
///
/// 日志类别
///
public LogTypeEnum LogType { get; set; }
///
/// 文件地址
///
public string FilePath { get; set; } = FrameworkConstant.LOGGING_FILE_PATH;
///
/// Els 地址
///
public string? Address { get; set; }
///
/// Els 用户名
///
public string? UserName { get; set; }
///
/// Els 密码
///
public string? Password { get; set; }
}
}