2021-08-09 15:41:42 +05:00
|
|
|
|
namespace AsbCloudApp.Data
|
2021-07-27 13:32:00 +05:00
|
|
|
|
{
|
2021-08-02 14:45:13 +05:00
|
|
|
|
public class WellOperationDto : IId
|
2021-07-27 13:32:00 +05:00
|
|
|
|
{
|
2021-07-28 09:46:58 +05:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public int IdWell { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Caption { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
|
|
public double CasingSection { get; set; }
|
|
|
|
|
|
|
|
|
|
public double WellDepth { get; set; }
|
|
|
|
|
|
2021-07-27 13:32:00 +05:00
|
|
|
|
}
|
|
|
|
|
}
|