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.
22 lines
758 B
22 lines
758 B
3 years ago
|
namespace Sanhe.Abp.Logging
|
||
|
{
|
||
|
public class LogField
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public string MachineName { get; set; }
|
||
|
public string Environment { get; set; }
|
||
|
public string Application { get; set; }
|
||
|
public string Context { get; set; }
|
||
|
public string ActionId { get; set; }
|
||
|
public string ActionName { get; set; }
|
||
|
public string RequestId { get; set; }
|
||
|
public string RequestPath { get; set; }
|
||
|
public string ConnectionId { get; set; }
|
||
|
public string CorrelationId { get; set; }
|
||
|
public string ClientId { get; set; }
|
||
|
public string UserId { get; set; }
|
||
|
public int ProcessId { get; set; }
|
||
|
public int ThreadId { get; set; }
|
||
|
}
|
||
|
}
|