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

18 lines
334 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 DataTime { get; set; }
public string Remark { get; set; }
}
}