using System; using System.Collections.Generic; namespace AsbCloudApp.Data { public class OperationInfoDto { public DateTimeOffset IntervalBegin { get; set; } public IEnumerable Operations { get; set; } } }