forked from ddrilling/AsbCloudServer
21 lines
478 B
C#
21 lines
478 B
C#
namespace AsbCloudApp.Requests.ExportOptions;
|
|
|
|
/// <summary>
|
|
/// Параметры экспорта
|
|
/// </summary>
|
|
public class WellRelatedExportRequest : IExportOptionsRequest
|
|
{
|
|
/// <summary>
|
|
/// Конструктор
|
|
/// </summary>
|
|
/// <param name="idWell">Id скважины</param>
|
|
public WellRelatedExportRequest(int idWell)
|
|
{
|
|
IdWell = idWell;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Id скважины
|
|
/// </summary>
|
|
public int IdWell { get; }
|
|
} |