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