- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Models
- {
- public class ElectricEnergyMeterLog : Base
- {
- public string MachineId { get; set; }
- public string MachineName { get; set; }
- public string Message { get; set; }
- }
- }
|