using System; using System.Collections.Generic; namespace AsbCloudApp.Requests { #nullable enable /// /// Параметры для запроса получения РТК /// public class ProcessMapRequest { /// /// Идентификатор скважины /// public int IdWell { get; set; } /// /// Тип секции /// public int? IdWellSectionType { get; set; } /// /// Дата обновления /// public DateTime? UpdateFrom { get; set; } } #nullable disable }