forked from ddrilling/AsbCloudServer
20 lines
406 B
C#
20 lines
406 B
C#
|
namespace AsbCloudApp.Requests.ExportOptions;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Параметры экспорта ГГД
|
||
|
/// </summary>
|
||
|
public class WellOperationExportRequest : WellRelatedExportRequest
|
||
|
{
|
||
|
/// <inheritdoc />
|
||
|
public WellOperationExportRequest(int idWell,
|
||
|
int idType)
|
||
|
: base(idWell)
|
||
|
{
|
||
|
IdType = idType;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Тип операций
|
||
|
/// </summary>
|
||
|
public int IdType { get; }
|
||
|
}
|