using System.ComponentModel.DataAnnotations; namespace AsbCloudApp.Data; /// /// DTO элемент композитной скважины /// public class WellCompositeDto : IWellRelated { /// [Required] public int IdWell { get; set; } /// /// id скважины входящей в композитную для этой /// [Required] public int IdWellSrc { get; set; } /// /// id секции скважины входящей в композитную для этой /// [Required] public int IdWellSectionType { get; set; } }