添加项目文件。
This commit is contained in:
40
Epost.Model/Log4NetDetailModel.cs
Normal file
40
Epost.Model/Log4NetDetailModel.cs
Normal file
@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
public class Log4NetDetailModel
|
||||
{
|
||||
public long Row { get; set; }
|
||||
public string ip { get; set; }
|
||||
public string username { get; set; }
|
||||
public string address { get; set; }
|
||||
public string date { get; set; }
|
||||
public string type { get; set; }
|
||||
public string bkaddress { get; set; }
|
||||
public string infromation { get; set; }
|
||||
public string block { get; set; }
|
||||
public string area { get; set; }
|
||||
public Log4NetDetailModel()
|
||||
{
|
||||
|
||||
}
|
||||
public Log4NetDetailModel(long Row, string ip, string username, string address, string date,
|
||||
string type, string bkaddress, string infromation, string block, string area)
|
||||
{
|
||||
this.Row = Row;
|
||||
this.ip = ip;
|
||||
this.username = username;
|
||||
this.date = date;
|
||||
this.type = type;
|
||||
this.bkaddress = bkaddress;
|
||||
this.infromation = infromation;
|
||||
this.block = block;
|
||||
this.area = area;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user