using System; using System.Collections.Generic; namespace AsbCloudApp.Data { public class OperationInfoDto { public DateTime IntervalBegin { get; set; } public DateTime IntervalEnd { get; set; } public IEnumerable OperationData { get; set; } } }