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

22 lines
437 B
C#
Raw Normal View History

2024-11-01 07:54:08 +00:00
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; }
}
}