using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace AsbCloudApp.Data
{
///
/// DTO Дело скважины, история файлов
///
public class WellFinalDocumentsHistoryDto
{
///
/// Вышка
///
[Required]
public int IdWell { get; set; }
///
/// Наименование категории файла
///
[Required]
public int IdCategory { get; set; }
///
/// Файлы
///
[Required]
public IEnumerable Files { get; set; } = null!;
}
}