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.
haoliang-net/CncService/Models/LogRecord.cs

17 lines
464 B
C#

using System;
namespace CncService.Models
{
// Represents a raw log entry captured by the ingestion service
public class LogRecord
{
public long LogId { get; set; }
public string MachineId { get; set; }
public string ProgramName { get; set; }
public DateTime LogTime { get; set; }
public string Action { get; set; }
public string Result { get; set; }
public string RawData { get; set; }
}
}