Files
T-DAS/Epost.Model/Log4NetDetailModel.cs

41 lines
1.2 KiB
C#
Raw Permalink Normal View History

2023-01-13 15:30:20 +08:00
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;
}
}
}