forked from ddrilling/AsbCloudServer
ba94db08b0
1. Сделан один общий репозиторий для РТК план 2. Переименованы поля 3. Добавил регитсрацию зависимостей
24 lines
538 B
C#
24 lines
538 B
C#
using System;
|
||
|
||
namespace AsbCloudApp.Requests;
|
||
|
||
/// <summary>
|
||
/// Запрос для получения РТК план
|
||
/// </summary>
|
||
public class ProcessMapPlanRequest
|
||
{
|
||
/// <summary>
|
||
/// Идентификатор скважины
|
||
/// </summary>
|
||
public int IdWell { get; set; }
|
||
|
||
/// <summary>
|
||
/// Тип секции
|
||
/// </summary>
|
||
public int? IdWellSectionType { get; set; }
|
||
|
||
/// <summary>
|
||
/// Дата обновления
|
||
/// </summary>
|
||
public DateTime? UpdateFrom { get; set; }
|
||
} |