forked from ddrilling/AsbCloudServer
19 lines
603 B
C#
19 lines
603 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class RequestLogDto
|
|
{
|
|
public string UserLogin { get; set; }
|
|
public int UserId { get; set; }
|
|
public string UserIp { get; set; }
|
|
public string RequestMethod { get; set; }
|
|
public string RequestPath { get; set; }
|
|
public string Referer { get; set; }
|
|
public long ElapsedMilliseconds { get; set; }
|
|
public int Status { get; set; }
|
|
public string ExceptionMessage { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public string ExceptionStack { get; set; }
|
|
}
|
|
} |