SpcDto.cs 416 B

12345678910111213141516
  1. using ProductionLineMonitor.Core.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Core.Dtos
  6. {
  7. public class SpcDto
  8. {
  9. public string Id { get; set; }
  10. public string MachineId { get; set; }
  11. public DateTime DataTime { get; set; }
  12. public string Lasermark { get; set; }
  13. public float[] Values { get; set; }
  14. }
  15. }