yl
2023-05-09 0e020006bf7c290c0059a22783b7b247e9bf185a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Log4net
{
    public class ActionLoggerInfo
    {
        public string ActionClick { get; set; }
        public string UserCode { get; set; }
        public string UserIP { get; set; }
        public int Level { get; set; }
        public ActionLoggerInfo(string ActionClick, string UserCode, string UserIP,int Level)
        {
            this.ActionClick = ActionClick;
            this.UserCode = UserCode;
            this.UserIP = UserIP;
            this.Level = Level;
        }
    }
}