forked from ddrilling/AsbCloudServer
12 lines
266 B
C#
12 lines
266 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class TelemetryOperationInfoDto
|
|
{
|
|
public DateTime IntervalBegin { get; set; }
|
|
public IList<TelemetryOperationDetailsDto> Operations { get; set; }
|
|
}
|
|
}
|