- using ProductionLineMonitor.Core.Models;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class SpcDto
- {
- public string Id { get; set; }
- public string MachineId { get; set; }
- public DateTime DataTime { get; set; }
- public string Lasermark { get; set; }
- public float[] Values { get; set; }
- }
- }
|