zinab_elgendy 1 tydzień temu
rodzic
commit
dcf2e7536b
1 zmienionych plików z 25 dodań i 0 usunięć
  1. 25 0
      MTWorkHR.Application/Dtos/Log/UserLogDto.cs

+ 25 - 0
MTWorkHR.Application/Dtos/Log/UserLogDto.cs

@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MTWorkHR.Application.Dtos.Log
+{
+    public class UserLogDto
+    {
+        public string Method { get; set; }
+        public string? QueryString { get; set; }
+        public string? Input { get; set; }
+        public DateTime CreateDate { get; set; }
+        public string CreateUser { get; set; }
+        public string? ServerIP { get; set; }
+        public string? Channel { get; set; }
+        public string? UserIP { get; set; }
+        public string ServiceResponseTimeInSeconds { get; set; }
+        public string ErrorCode { get; set; }
+        public string ErrorDescription { get; set; }
+        public string? InnerException { get; set; }
+        public string? userAgent { get; set; }
+    }
+}