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