forked from ddrilling/AsbCloudServer
13 lines
307 B
C#
13 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class OperationInfoDto
|
|
{
|
|
public DateTime IntervalBegin { get; set; }
|
|
public DateTime IntervalEnd { get; set; }
|
|
public IEnumerable<OperationDetailsDto> OperationData { get; set; }
|
|
}
|
|
}
|