2022-09-12 10:05:04 +05:00
|
|
|
|
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; }
|
|
|
|
|
|
2022-09-12 15:05:36 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Разрешение для текущего пользователя добавлять ответственных
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool PermissionToSetPubliher { get; set; } = true;
|
|
|
|
|
|
2022-09-12 10:05:04 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Документ дела скважины
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IEnumerable<WellFinalDocumentDto> WellFinalDocuments { get; set; } = Enumerable.Empty<WellFinalDocumentDto>();
|
|
|
|
|
}
|
|
|
|
|
#nullable disable
|
|
|
|
|
}
|