20240301_JSEQ_upperpc/JiangsuEarthquakeNowUI/JiangsuEarthquake/Models/LogRecordModel.cs
2024-11-01 15:54:08 +08:00

22 lines
437 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiangsuEarthquake.Models
{
public class LogRecordModel
{
public int Index { get; set; }
public DateTime RecordTime { get; set; }
public string Device_Name { get; set; }
public string Operation_Type { get; set; }
public string Record { get; set; }
}
}