You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System;
|
|
|
|
namespace Admin.Core.Common
|
|
{
|
|
public class LogInfo
|
|
{
|
|
public DateTime Datetime { get; set; }
|
|
public string Content { get; set; }
|
|
public string IP { get; set; }
|
|
public string LogColor { get; set; }
|
|
public int Import { get; set; } = 0;
|
|
}
|
|
}
|