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