2024-03-22 12:42:48 +05:00
|
|
|
namespace AsbCloudApp.Requests.ExportOptions;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Параметры экспорта ГГД
|
|
|
|
/// </summary>
|
|
|
|
public class WellOperationExportRequest : WellRelatedExportRequest
|
|
|
|
{
|
2024-07-04 11:02:45 +05:00
|
|
|
/// <inheritdoc />
|
|
|
|
public WellOperationExportRequest(int idWell,
|
|
|
|
int idType)
|
|
|
|
: base(idWell)
|
|
|
|
{
|
|
|
|
IdType = idType;
|
|
|
|
}
|
2024-03-22 12:42:48 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Тип операций
|
|
|
|
/// </summary>
|
|
|
|
public int IdType { get; }
|
2024-03-22 12:42:48 +05:00
|
|
|
}
|