namespace Sanhe.Abp.Auditing.Logging
{
public class LogExceptionDto
{
///
/// 深度
///
public int Depth { get; set; }
///
/// 类型
///
public string Class { get; set; }
///
/// 消息
///
public string Message { get; set; }
///
/// 来源
///
public string Source { get; set; }
///
/// 堆栈
///
public string StackTrace { get; set; }
///
/// 代码
///
public int HResult { get; set; }
///
/// 帮助
///
public string HelpURL { get; set; }
}
}