forked from ddrilling/AsbCloudServer
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
#nullable disable
|
|
/// <summary>
|
|
/// DTO Дело скважины
|
|
/// </summary>
|
|
public class WellFinalDocumentsDto
|
|
{
|
|
/// <summary>
|
|
/// Вышка
|
|
/// </summary>
|
|
public int IdWell { get; set; }
|
|
|
|
/// <summary>
|
|
/// Наменование категории файла
|
|
/// </summary>
|
|
public string NameCategory { get; set; }
|
|
|
|
/// <summary>
|
|
/// Список ответственных
|
|
/// </summary>
|
|
public IEnumerable<UserExtendedDto> ListResponsible { get; set; } = Enumerable.Empty<UserExtendedDto>();
|
|
|
|
/// <summary>
|
|
/// Количество файлов этой категории загруженных ранее
|
|
/// </summary>
|
|
public int CountFiles { get; set; }
|
|
|
|
/// <summary>
|
|
/// Актуальный файл
|
|
/// </summary>
|
|
public FileInfoDto File { get; set; }
|
|
}
|
|
#nullable disable
|
|
}
|