ReadDayDto.cs 243 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Core.Dtos
  5. {
  6. public class ReadDayDto
  7. {
  8. public string Id { get; set; }
  9. public DateTime DateTime { get; set; }
  10. }
  11. }