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.
31 lines
746 B
31 lines
746 B
3 years ago
|
using Microsoft.Extensions.Logging;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
3 years ago
|
namespace Sanhe.Abp.Auditing.Logging
|
||
3 years ago
|
{
|
||
|
public class LogDto
|
||
|
{
|
||
3 years ago
|
/// <summary>
|
||
|
/// 时间戳
|
||
|
/// </summary>
|
||
3 years ago
|
public DateTime TimeStamp { get; set; }
|
||
3 years ago
|
/// <summary>
|
||
|
/// 日志级别
|
||
|
/// </summary>
|
||
3 years ago
|
public LogLevel Level { get; set; }
|
||
3 years ago
|
/// <summary>
|
||
|
/// 信息
|
||
|
/// </summary>
|
||
3 years ago
|
public string Message { get; set; }
|
||
3 years ago
|
/// <summary>
|
||
|
/// 字段
|
||
|
/// </summary>
|
||
3 years ago
|
public LogFieldDto Fields { get; set; }
|
||
3 years ago
|
/// <summary>
|
||
|
/// 错误信息
|
||
|
/// </summary>
|
||
3 years ago
|
public List<LogExceptionDto> Exceptions { get; set; }
|
||
|
}
|
||
|
}
|