- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class ReadRangeDto
- {
- public string Id { get; set; }
- public DateTime StartTime { get; set; }
- public DateTime StopTime { get; set; }
- }
- }
|