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