20240301_JSEQ_upperpc/JiangsuEarthquakeNow/JiangsuEarthquake/Models/LogRecordModel.cs

22 lines
437 B
C#
Raw Normal View History

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