2021-04-02 17:28:07 +05:00
|
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
|
{
|
2021-07-19 15:11:01 +05:00
|
|
|
|
|
2021-08-02 14:45:13 +05:00
|
|
|
|
public class WellDto : WellInfoDto, IMapPoint, IId
|
2021-04-02 17:28:07 +05:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2021-07-21 15:22:58 +05:00
|
|
|
|
public double? Latitude { get; set; }
|
|
|
|
|
public double? Longitude { get; set; }
|
|
|
|
|
public string WellType { get; set; }
|
2021-09-10 11:28:57 +05:00
|
|
|
|
public TelemetryDto Telemetry { get; set; }
|
2021-04-02 17:28:07 +05:00
|
|
|
|
}
|
|
|
|
|
}
|