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