DD.WellWorkover.Cloud/AsbCloudApp/Data/RequestLogDto.cs
2022-04-11 18:00:34 +05:00

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; }
}
}