using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AsbCloudApp.Data { #nullable enable /// /// Дела скважины /// public class WellCaseDto { /// /// Скважина /// public int IdWell { get; set; } /// /// Разрешение для текущего пользователя добавлять ответственных /// public bool PermissionToSetPubliher { get; set; } = true; /// /// Документ дела скважины /// public IEnumerable WellFinalDocuments { get; set; } = Enumerable.Empty(); } #nullable disable }