using System.Collections.Generic; using System.Linq; namespace AsbCloudApp.Data { /// /// DTO статистики скважин куста /// public class StatClusterDto : IId { /// public int Id { get; set; } /// /// название куста /// public string Caption { get; set; } = string.Empty; /// /// список статистик скважин куста /// public IEnumerable StatsWells { get; set; } = Enumerable.Empty(); } }