DD.WellWorkover.Cloud/AsbCloudApp/Data/Manuals/CatalogItemManualDto.cs
Степанов Дмитрий Александрович e56530a10f Добавление логики работы с инструкциями
1. Добавил сервисы и репозитории для инфструкций
2. Добавил контроллеры
3. Обновил конфиг
2023-08-10 11:45:05 +05:00

25 lines
707 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
using System.Linq;
namespace AsbCloudApp.Data.Manuals;
/// <summary>
/// Элемент каталога инструкций
/// </summary>
public class CatalogItemManualDto
{
/// <summary>
/// DTO категории
/// </summary>
public FileCategoryDto Category { get; set; } = null!;
/// <summary>
/// DTO инструкций хранящиеся без папки
/// </summary>
public IEnumerable<ManualDto> ManualsWithoutFolder { get; set; } = Enumerable.Empty<ManualDto>();
/// <summary>
/// DTO папок с инструкциями
/// </summary>
public IEnumerable<ManualFolderDto> Folders { get; set; } = Enumerable.Empty<ManualFolderDto>();
}