forked from ddrilling/AsbCloudServer
14 lines
412 B
C#
14 lines
412 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace AsbCloudApp.Requests;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Параметры запроса для ствола скважины
|
||
|
/// </summary>
|
||
|
public class WellboreRequest : RequestBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Пары идентификаторов скважины и секции
|
||
|
/// </summary>
|
||
|
public IEnumerable<(int idWell, int? idWellSectionType)> Ids { get; set; } = null!;
|
||
|
}
|