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